projects
/
pgweb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2dfdbe
)
Fix silly copy/paste mistake
author
Magnus Hagander
<magnus@hagander.net>
Tue, 29 Sep 2020 16:49:23 +0000
(18:49 +0200)
committer
Magnus Hagander
<magnus@hagander.net>
Tue, 29 Sep 2020 16:49:23 +0000
(18:49 +0200)
pgweb/events/feeds.py
patch
|
blob
|
blame
|
history
diff --git
a/pgweb/events/feeds.py
b/pgweb/events/feeds.py
index fc48579b610d1d1e21d05c149a40558d65533fe6..9ac84c6574d2ec3445b3c228e1dff8aab99c35f4 100644
(file)
--- a/
pgweb/events/feeds.py
+++ b/
pgweb/events/feeds.py
@@
-17,7
+17,7
@@
class EventFeed(Feed):
return Event.objects.filter(approved=True)[:10]
def item_link(self, obj):
- return "https://www.postgresql.org/about/event/{}-{}/".format(slugify(
event
.title), obj.id)
+ return "https://www.postgresql.org/about/event/{}-{}/".format(slugify(
obj
.title), obj.id)
def item_pubdate(self, obj):
return datetime.combine(obj.startdate, time.min)