We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6401f9 commit 65b4f73Copy full SHA for 65b4f73
1 file changed
ietf/ipr/feeds.py
@@ -19,8 +19,8 @@ def item_pubdate(self, item):
19
return item.submitted_date
20
def item_author_name(self, item):
21
s = item.get_submitter()
22
- if s:
23
- return s.name
+ if s:
+ return unicode(s.name, encoding='utf-8', errors='replace')
24
return None
25
def item_author_email(self, item):
26
0 commit comments