diff options
author | cedricbonhomme <devnull@localhost> | 2012-09-10 12:10:18 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-09-10 12:10:18 +0200 |
commit | ad2b3a96c125476706465793e8232322b7b916fa (patch) | |
tree | e73a902ce94018948966e548c7cac662a4831a05 /source | |
parent | Added two new blogs in the default feed.lst file. Test the detection of feeds... (diff) | |
download | newspipe-ad2b3a96c125476706465793e8232322b7b916fa.tar.gz newspipe-ad2b3a96c125476706465793e8232322b7b916fa.tar.bz2 newspipe-ad2b3a96c125476706465793e8232322b7b916fa.zip |
Clearer date at the index page.
Diffstat (limited to 'source')
-rwxr-xr-x | source/pyAggr3g470r.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index 9ce14db5..50786522 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -184,7 +184,7 @@ class Root: # a description line per article (date, title of the article and # CSS description tooltips on mouse over) - html += article["article_date"].ctime() + " - " + \ + html += article["article_date"].strftime('%Y-%m-%d %H:%M') + " - " + \ """<a class="tooltip" href="/article/%s:%s" rel="noreferrer" target="_blank">%s%s%s<span class="classic">%s</span></a>""" % \ (feed["feed_id"], article["article_id"], not_read_begin, \ article_title, not_read_end, description) + like + "<br />\n" |