diff options
Diffstat (limited to 'pgcommitfest/commitfest/feeds.py')
-rw-r--r-- | pgcommitfest/commitfest/feeds.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/feeds.py b/pgcommitfest/commitfest/feeds.py index d858703..cd206ac 100644 --- a/pgcommitfest/commitfest/feeds.py +++ b/pgcommitfest/commitfest/feeds.py @@ -1,5 +1,6 @@ from django.contrib.syndication.views import Feed + class ActivityFeed(Feed): title = description = 'Commitfest Activity Log' link = 'https://commitfest.postgresql.org/' @@ -30,7 +31,7 @@ class ActivityFeed(Feed): def item_link(self, item): if self.cfid: - return 'https://commitfest.postgresql.org/{cfid}/{patchid}/'.format(cfid=self.cfid,**item) + return 'https://commitfest.postgresql.org/{cfid}/{patchid}/'.format(cfid=self.cfid, **item) else: return 'https://commitfest.postgresql.org/{cfid}/{patchid}/'.format(**item) |