diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-29 14:45:20 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-29 14:45:20 +0100 |
commit | a42a28a166014b8ee21ad740d9d478307e76b2ef (patch) | |
tree | 749ffc573122f4439200a4eb014badcd06c66d08 | |
parent | The HTML month date picker has been removed from the /history page. (diff) | |
download | newspipe-a42a28a166014b8ee21ad740d9d478307e76b2ef.tar.gz newspipe-a42a28a166014b8ee21ad740d9d478307e76b2ef.tar.bz2 newspipe-a42a28a166014b8ee21ad740d9d478307e76b2ef.zip |
Removed useless HTML newline.
-rwxr-xr-x | source/pyAggr3g470r.py | 6 |
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: |