File yum-3.2.25-suse-changelogs.patch of Package yum
--- yum/packages.py.orig 2010-04-09 12:26:43.000000000 +0200
+++ yum/packages.py 2010-04-09 13:40:53.000000000 +0200
@@ -1007,6 +1007,8 @@
else:
clogs = self.changelog[:clog_limit]
for (ts, author, content) in reversed(clogs):
+ if author[0] == '-':
+ author = author[2:]
msg += """<changelog author="%s" date="%s">%s</changelog>\n""" % (
misc.to_xml(author, attrib=True), misc.to_xml(str(ts)),
misc.to_xml(content))