In gantt.py, line 886, if a task was created with a start and stop date being the same date (and not with duration), the while loop incorrectly reference duration without it being set.
The error is:
TypeError: '>' not supported between instances of 'NoneType' and 'int'
|
while duration > 1 or (current_day.weekday() in _not_worked_days() or current_day in VACATIONS): |