mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Fix: month numbers should start with 1
This commit is contained in:
committed by
GitHub
parent
9d381723ed
commit
15ae425a6b
@@ -69,7 +69,7 @@ while True:
|
|||||||
|
|
||||||
month = month + 1
|
month = month + 1
|
||||||
if month > 12:
|
if month > 12:
|
||||||
month = 0
|
month = 1
|
||||||
year = year + 1
|
year = year + 1
|
||||||
|
|
||||||
lines.reverse()
|
lines.reverse()
|
||||||
|
|||||||
Reference in New Issue
Block a user