Fix: month numbers should start with 1

This commit is contained in:
Philipp Oppermann
2021-02-25 14:02:40 +01:00
committed by GitHub
parent 9d381723ed
commit 15ae425a6b

View File

@@ -69,7 +69,7 @@ while True:
month = month + 1
if month > 12:
month = 0
month = 1
year = year + 1
lines.reverse()