diff options
author | Alban Gruin | 2017-11-26 18:27:55 +0100 |
---|---|---|
committer | Alban Gruin | 2017-11-26 18:27:55 +0100 |
commit | 772caa72ce7f80bfeb5fbb1d05b57838dafd48c3 (patch) | |
tree | 00482ecc09db0eefd0617c6f9225b7c3e6f96161 /management | |
parent | ffffd9842dbaba0b0e89ff5f434f45792e2b73b6 (diff) | |
parent | 4998865c2d5e94c53547e44aed1dc825163c0c4a (diff) |
Merge branch 'stable/0.12.z' into prod/pa1ch/0.y.zv0.12.0-pa1ch
Diffstat (limited to 'management')
-rw-r--r-- | management/commands/_private.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/management/commands/_private.py b/management/commands/_private.py index b663454..4dd9262 100644 --- a/management/commands/_private.py +++ b/management/commands/_private.py @@ -54,7 +54,7 @@ def get_event(timetable, event, event_week, today): end = add_time(date, event.endtime.text) # On ne traite pas le cours si il commence après le moment du traitement - if begin < today: + if today is not None and begin < today: return # Création de l’objet cours |