avoid unicode errors involving changelogs (rhbz 545387, patch by dmach)
This commit is contained in:
parent
2affc996d5
commit
e565217a73
1 changed files with 2 additions and 1 deletions
|
|
@ -35,7 +35,8 @@ def formatChangelog(entries):
|
|||
result += """* %s %s
|
||||
%s
|
||||
|
||||
""" % (_changelogDate(entry['date']), entry['author'], entry['text'])
|
||||
""" % (_changelogDate(entry['date']), entry['author'].encode("utf-8"),
|
||||
entry['text'].encode("utf-8"))
|
||||
|
||||
return result
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue