summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastermain/management/commands/buildimport.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastermain/management/commands/buildimport.py')
-rw-r--r--bitbake/lib/toaster/toastermain/management/commands/buildimport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastermain/management/commands/buildimport.py b/bitbake/lib/toaster/toastermain/management/commands/buildimport.py
index 9af54ec2f2..3e246fda83 100644
--- a/bitbake/lib/toaster/toastermain/management/commands/buildimport.py
+++ b/bitbake/lib/toaster/toastermain/management/commands/buildimport.py
@@ -505,7 +505,7 @@ class Command(BaseCommand):
505 default_release = Release.objects.get(id=1) 505 default_release = Release.objects.get(id=1)
506 506
507 # SANITY: if 'reconfig' but project does not exist (deleted externally), switch to 'import' 507 # SANITY: if 'reconfig' but project does not exist (deleted externally), switch to 'import'
508 if ("reconfigure" == options['command']) and (None == project): 508 if ("reconfigure" == options['command']) and project is None:
509 options['command'] = 'import' 509 options['command'] = 'import'
510 510
511 # 'Configure': 511 # 'Configure':