Closed katrinafyi closed 6 years ago
Specifically, OSError: [Errno 22] Invalid argument in uq_course_utils.get_course_assessment:
OSError: [Errno 22] Invalid argument
cutoff = cutoff or datetime.fromtimestamp(0)
It looks like the timestamp 0 is somehow invalid on Windows 10 (it works fine on the official bot). Changing it to datetime.min fixes it.
datetime.min
Specifically,
OSError: [Errno 22] Invalid argument
in uq_course_utils.get_course_assessment:It looks like the timestamp 0 is somehow invalid on Windows 10 (it works fine on the official bot). Changing it to
datetime.min
fixes it.