diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-02-17 00:18:49 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-02-17 00:18:49 +0100 |
commit | 31ec72ec239656655c3c1bab84efcca01b7fdd6c (patch) | |
tree | b907431651b8793c2e8d7b6ee2e87b451a7c7e5d /wikifolio/rss.py | |
parent | d9a668312c152d4f64318010ec84340015d896bb (diff) | |
download | wikifolio-rss-31ec72ec239656655c3c1bab84efcca01b7fdd6c.tar.gz wikifolio-rss-31ec72ec239656655c3c1bab84efcca01b7fdd6c.zip |
Change rss title
Diffstat (limited to 'wikifolio/rss.py')
-rw-r--r-- | wikifolio/rss.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wikifolio/rss.py b/wikifolio/rss.py index e56c143..a00191c 100644 --- a/wikifolio/rss.py +++ b/wikifolio/rss.py @@ -11,11 +11,11 @@ def dump(cert, comments): :type cert: model.Certificate :type comments: list[model.Comment] """ - title = "Kommentare zu {.name} / {.isin}".format(cert, cert) + title = "{.name} / {.isin}".format(cert, cert) items = [] for comment in comments: items.append(rss20.item( - rss20.title(title), + rss20.title("Kommentar " + title), rss20.author(comment.author), rss20.pubDate(time.strftime("%a, %d %b %Y %T %z", comment.pubDate)), |