aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-11-09 21:44:31 +0100
committercedricbonhomme <devnull@localhost>2012-11-09 21:44:31 +0100
commit1fef67c196389c2357681820735c439a8e6c7e09 (patch)
treeaf5356c662e2e99dc2f64c5feed0f2a0b3e9fb43 /source
parentStart script now checks if Python 3 is the default installation on the system... (diff)
downloadnewspipe-1fef67c196389c2357681820735c439a8e6c7e09.tar.gz
newspipe-1fef67c196389c2357681820735c439a8e6c7e09.tar.bz2
newspipe-1fef67c196389c2357681820735c439a8e6c7e09.zip
I hear you like commits.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index c245d327..edc55be8 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -917,7 +917,7 @@ class pyAggr3g470r(object):
target="_blank"><img src="%s" width="28" height="28" /></a></h2>\n""" % \
(feed["feed_id"], feed["feed_link"], feed["feed_title"], feed["feed_link"], feed["feed_image"])
- html += article["article_date"].strftime("%a %d (%H:%M:%S) ") + \
+ html += article["article_date"].strftime("%a %d (%H:%M:%S) ") + " - " + \
"""<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