You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at line 104: year, month, day = int(dday[0:4]), int(dday[6:7]), int(dday[8:10])
should be year, month, day = int(dday[0:4]), int(dday[5:7]), int(dday[8:10])
Best regards
The text was updated successfully, but these errors were encountered:
at line 104:
year, month, day = int(dday[0:4]), int(dday[6:7]), int(dday[8:10])
should be
year, month, day = int(dday[0:4]), int(dday[5:7]), int(dday[8:10])
Best regards
The text was updated successfully, but these errors were encountered: