aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-09-03 07:41:57 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-09-03 07:41:57 +0200
commit5e4a26757640aa4493a2e91bf9c0eab26bf29193 (patch)
treea82b1414e790ecb0232433653c4c61958918165f /source
parentRemoved 'overflow-x:hiden' in the CSS. (diff)
downloadnewspipe-5e4a26757640aa4493a2e91bf9c0eab26bf29193.tar.gz
newspipe-5e4a26757640aa4493a2e91bf9c0eab26bf29193.tar.bz2
newspipe-5e4a26757640aa4493a2e91bf9c0eab26bf29193.zip
Minor change to the template of the /history page.
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