From 33412a0458bd56086ffcde58be46f8dbcf2ec449 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 2 Jul 2014 11:05:36 +0200 Subject: [PATCH] bugfix --- .../management/commands/teleforma-exam-submit-scripts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/management/commands/teleforma-exam-submit-scripts.py b/teleforma/management/commands/teleforma-exam-submit-scripts.py index 1d752cb6..5fd4097b 100644 --- a/teleforma/management/commands/teleforma-exam-submit-scripts.py +++ b/teleforma/management/commands/teleforma-exam-submit-scripts.py @@ -14,6 +14,6 @@ class Command(BaseCommand): help = "submit all script to Box View" def handle(self, *args, **options): - for script in Script.bojects.all() + for script in Script.bojects.all(): script.submit() - script.save() \ No newline at end of file + script.save() -- 2.39.5