aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-09-10 12:10:18 +0200
committercedricbonhomme <devnull@localhost>2012-09-10 12:10:18 +0200
commitad2b3a96c125476706465793e8232322b7b916fa (patch)
treee73a902ce94018948966e548c7cac662a4831a05
parentAdded two new blogs in the default feed.lst file. Test the detection of feeds... (diff)
downloadnewspipe-ad2b3a96c125476706465793e8232322b7b916fa.tar.gz
newspipe-ad2b3a96c125476706465793e8232322b7b916fa.tar.bz2
newspipe-ad2b3a96c125476706465793e8232322b7b916fa.zip
Clearer date at the index page.
-rwxr-xr-xsource/pyAggr3g470r.py2
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"
bgstack15