diff options
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/management')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | 2 | ||||
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py index 6b1da1b103..2407e1bbcc 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | |||
@@ -105,7 +105,7 @@ class Command(NoArgsCommand): | |||
105 | try: | 105 | try: |
106 | config_file = os.environ.get('TOASTER_CONF') | 106 | config_file = os.environ.get('TOASTER_CONF') |
107 | print("\nImporting file: %s" % config_file) | 107 | print("\nImporting file: %s" % config_file) |
108 | from loadconf import Command as LoadConfigCommand | 108 | from .loadconf import Command as LoadConfigCommand |
109 | 109 | ||
110 | LoadConfigCommand()._import_layer_config(config_file) | 110 | LoadConfigCommand()._import_layer_config(config_file) |
111 | # we run lsupdates after config update | 111 | # we run lsupdates after config update |
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py b/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py index 5022b59400..6d25df9e54 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/loadconf.py | |||
@@ -4,7 +4,7 @@ from orm.models import BitbakeVersion, Release, ReleaseDefaultLayer, ReleaseLaye | |||
4 | from django.db import IntegrityError | 4 | from django.db import IntegrityError |
5 | import os | 5 | import os |
6 | 6 | ||
7 | from checksettings import DN | 7 | from .checksettings import DN |
8 | 8 | ||
9 | import logging | 9 | import logging |
10 | logger = logging.getLogger("toaster") | 10 | logger = logging.getLogger("toaster") |