diff options
-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" |