From: hernani Date: Sun, 20 Nov 2011 23:02:37 +0000 (+0000) Subject: no need to force unicode here, and its causing errors in some feeds X-Git-Tag: live~113 X-Git-Url: https://git.openstreetmap.org/osqa.git/commitdiff_plain/9aff9f20a59714803bae4c4741cc52995eff2a3a no need to force unicode here, and its causing errors in some feeds git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@1204 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/feed.py b/forum/feed.py index 7bf7207..042f042 100644 --- a/forum/feed.py +++ b/forum/feed.py @@ -25,7 +25,7 @@ class BaseNodeFeed(Feed): def __init__(self, request, title, description, url): self._title = title - self._description = mark_safe(unicode(description)) + self._description = mark_safe(description) self._url = url if old_version: