Increase supported weeks per month from 4 to 6 in AccessTime() type

This commit is contained in:
Rob Crittenden
2010-06-03 09:25:25 -04:00
parent dbd1f50111
commit 4924270b45

View File

@@ -1423,7 +1423,7 @@ class AccessTime(Str):
if not t.isnumeric():
raise ValueError('week of the month non-numeric')
value = int(t)
if value < 1 or value > 4:
if value < 1 or value > 6:
raise ValueError('week of the month out of range')
def _check_woty(self, t):