Update apscheduler to version 3.6.3

This commit is contained in:
JonnyWong16
2019-11-23 14:38:11 -08:00
parent e5a3d534b2
commit 244a3e5be3
13 changed files with 141 additions and 64 deletions

View File

@@ -104,7 +104,7 @@ class DayOfWeekField(BaseField):
COMPILERS = BaseField.COMPILERS + [WeekdayRangeExpression]
def get_value(self, dateval):
return dateval.isoweekday() % 7
return dateval.weekday()
class MonthField(BaseField):