aboutsummaryrefslogtreecommitdiff
path: root/source/pyAggr3g470r.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-29 14:45:20 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-29 14:45:20 +0100
commita42a28a166014b8ee21ad740d9d478307e76b2ef (patch)
tree749ffc573122f4439200a4eb014badcd06c66d08 /source/pyAggr3g470r.py
parentThe HTML month date picker has been removed from the /history page. (diff)
downloadnewspipe-a42a28a166014b8ee21ad740d9d478307e76b2ef.tar.gz
newspipe-a42a28a166014b8ee21ad740d9d478307e76b2ef.tar.bz2
newspipe-a42a28a166014b8ee21ad740d9d478307e76b2ef.zip
Removed useless HTML newline.
Diffstat (limited to 'source/pyAggr3g470r.py')
-rwxr-xr-xsource/pyAggr3g470r.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index ddf3d5c0..4bc45a44 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -425,15 +425,15 @@ class pyAggr3g470r(object):
if query == "all":
html += "<h1>Search with tags cloud</h1>\n"
- html += "<h4>Choose a year</h4></br >\n"
+ html += "<h4>Choose a year</h4>n"
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></br >\n"
+ html += "<h1>Choose a month for " + 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><br />\n"
+ ", "+ the_year +".</h1>\n"
timeline = Counter()
for feed in feeds:
bgstack15