aboutsummaryrefslogtreecommitdiff
path: root/management/commands/timetables.py
diff options
context:
space:
mode:
authorAlban Gruin2017-03-26 18:19:43 +0200
committerAlban Gruin2017-03-26 18:19:43 +0200
commit3b33b8bde368980039c0b5c9e7aa6df05063afb2 (patch)
tree171f794e9ba48646f1add1e0129df8e6d9bde0bb /management/commands/timetables.py
parent10e90edecc88cb45ac7c88c9ec77de00d656d470 (diff)
parentb3a9ed0743f0db3ba65973769ea981bb50c64482 (diff)
Merge branch 'stable/0.7.z' into prod/pa1ch/0.7.zv0.7.2-pa1ch
Diffstat (limited to 'management/commands/timetables.py')
-rw-r--r--management/commands/timetables.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/management/commands/timetables.py b/management/commands/timetables.py
index d39075d..d596233 100644
--- a/management/commands/timetables.py
+++ b/management/commands/timetables.py
@@ -64,6 +64,8 @@ class Command(BaseCommand):
def handle(self, *args, **options):
year = None
+ errcount = 0
+
if options["week"] is None:
_, week, day = timezone.now().isocalendar()
if day >= 6:
@@ -84,5 +86,9 @@ class Command(BaseCommand):
process_timetable(timetable, year, weeks)
except Exception as e:
self.stderr.write(self.style.ERROR("Failed to process {0}: {1}".format(timetable, e)))
+ errcount += 1
- self.stdout.write(self.style.SUCCESS("Done."))
+ if errcount == 0:
+ self.stdout.write(self.style.SUCCESS("Done."))
+ else:
+ self.stdout.write(self.style.ERROR("Done with {0} errors.".format(errcount)))