aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index aed658c8..b9b8f9c1 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -589,6 +589,8 @@ class Root:
html += "<h1>Chose a year</h1></br >\n"
if "year" in querystring:
the_year = querystring.split('-')[0].split(':')[1]
+ if "month" not in querystring:
+ html += "<h1>Chose a month for " + the_year + "</h1></br >\n"
if "month" in querystring:
the_month = querystring.split('-')[1].split(':')[1]
html += "<h1>Articles of "+ calendar.month_name[int(the_month)] + \
bgstack15