summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastermain/management/commands/builddelete.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastermain/management/commands/builddelete.py')
-rw-r--r--bitbake/lib/toaster/toastermain/management/commands/builddelete.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastermain/management/commands/builddelete.py b/bitbake/lib/toaster/toastermain/management/commands/builddelete.py
index ff93e549df..0bef8d4103 100644
--- a/bitbake/lib/toaster/toastermain/management/commands/builddelete.py
+++ b/bitbake/lib/toaster/toastermain/management/commands/builddelete.py
@@ -15,7 +15,7 @@ class Command(BaseCommand):
15 try: 15 try:
16 b = Build.objects.get(pk = bid) 16 b = Build.objects.get(pk = bid)
17 except ObjectDoesNotExist: 17 except ObjectDoesNotExist:
18 print 'build %s does not exist, skipping...' %(bid) 18 print('build %s does not exist, skipping...' %(bid))
19 continue 19 continue
20 # theoretically, just b.delete() would suffice 20 # theoretically, just b.delete() would suffice
21 # however SQLite runs into problems when you try to 21 # however SQLite runs into problems when you try to