Kaydet (Commit) 8926a10f authored tarafından Malcolm Tredinnick's avatar Malcolm Tredinnick

Fixed #6303 -- Handle missing language specification in feed generation. Thanks, david.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 787acefc
......@@ -53,7 +53,7 @@ class SyndicationFeed(object):
'title': to_unicode(title),
'link': iri_to_uri(link),
'description': to_unicode(description),
'language': force_unicode(language),
'language': to_unicode(language),
'author_email': to_unicode(author_email),
'author_name': to_unicode(author_name),
'author_link': iri_to_uri(author_link),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment