diff options
Diffstat (limited to 'bitbake/lib')
| -rw-r--r-- | bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py index 582114ac97..823c6f154a 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | |||
| @@ -107,7 +107,10 @@ class Command(BaseCommand): | |||
| 107 | action="ignore", | 107 | action="ignore", |
| 108 | message="^.*No fixture named.*$") | 108 | message="^.*No fixture named.*$") |
| 109 | print("Importing custom settings if present") | 109 | print("Importing custom settings if present") |
| 110 | call_command("loaddata", "custom") | 110 | try: |
| 111 | call_command("loaddata", "custom") | ||
| 112 | except: | ||
| 113 | print("NOTE: optional fixture 'custom' not found") | ||
| 111 | 114 | ||
| 112 | # we run lsupdates after config update | 115 | # we run lsupdates after config update |
| 113 | print("\nFetching information from the layer index, " | 116 | print("\nFetching information from the layer index, " |
