diff options
author | Christian Breunig <christian@breunig.cc> | 2023-07-12 21:16:11 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-07-12 21:16:56 +0200 |
commit | 4e2a087cc7e91a510dd590f7cc761e36ac8f77f8 (patch) | |
tree | fd7534645f6950a8fcaabbce4c1437f6432cf3ff /python/vyos/configsource.py | |
parent | 6e621e42f463d8643b504916a1cc7c967f5bd6f1 (diff) | |
download | vyos-1x-4e2a087cc7e91a510dd590f7cc761e36ac8f77f8.tar.gz vyos-1x-4e2a087cc7e91a510dd590f7cc761e36ac8f77f8.zip |
T5195: move boot_* helpers to vyos.utils.boot
Diffstat (limited to 'python/vyos/configsource.py')
-rw-r--r-- | python/vyos/configsource.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/configsource.py b/python/vyos/configsource.py index 510b5b65a..f582bdfab 100644 --- a/python/vyos/configsource.py +++ b/python/vyos/configsource.py @@ -1,5 +1,5 @@ -# Copyright 2020 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2020-2023 VyOS maintainers and contributors <maintainers@vyos.io> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -19,7 +19,7 @@ import re import subprocess from vyos.configtree import ConfigTree -from vyos.util import boot_configuration_complete +from vyos.utils.boot import boot_configuration_complete class VyOSError(Exception): """ |