avoid unicode errors involving changelogs (rhbz 545387, patch by dmach)

This commit is contained in:
Mike McLean 2009-12-08 22:40:05 -05:00
parent 2affc996d5
commit e565217a73

View file

@ -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