aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/static/templates/history.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/static/templates/history.html b/source/static/templates/history.html
index a0b42fd2..16f909dc 100644
--- a/source/static/templates/history.html
+++ b/source/static/templates/history.html
@@ -17,7 +17,7 @@ from collections import Counter
if "year" in query:
the_year = query.split('-')[0].split(':')[1]
if "month" not in query:
- html += "<h1>Choose a month for " + the_year + "</h1>\n"
+ html += "<h1>Choose a month for the year " + the_year + "</h1>\n"
if "month" in query:
the_month = query.split('-')[1].split(':')[1]
html += "<h1>Articles of "+ calendar.month_name[int(the_month)] + ", "+ the_year +".</h1>\n"
bgstack15