From 15ae425a6b99ad7132a0da65baa267f6327c3d68 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 25 Feb 2021 14:02:40 +0100 Subject: [PATCH] Fix: month numbers should start with 1 --- blog/before_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/before_build.py b/blog/before_build.py index 8e79b6d3..08786462 100644 --- a/blog/before_build.py +++ b/blog/before_build.py @@ -69,7 +69,7 @@ while True: month = month + 1 if month > 12: - month = 0 + month = 1 year = year + 1 lines.reverse()