mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27: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
|
||||
if month > 12:
|
||||
month = 0
|
||||
month = 1
|
||||
year = year + 1
|
||||
|
||||
lines.reverse()
|
||||
|
||||
Reference in New Issue
Block a user