aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/user_pages/views.py
diff options
context:
space:
mode:
authorJoar Wandborg <git@wandborg.com>2011-06-12 03:24:31 +0200
committerJoar Wandborg <git@wandborg.com>2011-06-12 03:24:31 +0200
commit44e2da2fe60a3b8765d0fef5a9ce0c3e5997dd01 (patch)
treed23323b61f33780b46bb7cdc9349ad174849ecca /mediagoblin/user_pages/views.py
parentd07713d0b0696528927e720e957ac4d049e3f46f (diff)
downloadmediagoblin-44e2da2fe60a3b8765d0fef5a9ce0c3e5997dd01.tar.lz
mediagoblin-44e2da2fe60a3b8765d0fef5a9ce0c3e5997dd01.tar.xz
mediagoblin-44e2da2fe60a3b8765d0fef5a9ce0c3e5997dd01.zip
Added Markdown rendering for `media_entry`
Diffstat (limited to 'mediagoblin/user_pages/views.py')
-rw-r--r--mediagoblin/user_pages/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/user_pages/views.py b/mediagoblin/user_pages/views.py
index 323c3e54..4ec0f0aa 100644
--- a/mediagoblin/user_pages/views.py
+++ b/mediagoblin/user_pages/views.py
@@ -81,10 +81,10 @@ def atom_feed(request):
feed = AtomFeed(request.matchdict['user'],
feed_url=request.url,
url=request.host_url)
-
+
for entry in cursor:
feed.add(entry.get('title'),
- entry.get('description'),
+ entry.get('description_html'),
content_type='html',
author=request.matchdict['user'],
updated=entry.get('created'),