summaryrefslogtreecommitdiff
path: root/src/mailman/bin/export.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/bin/export.py')
-rw-r--r--src/mailman/bin/export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/bin/export.py b/src/mailman/bin/export.py
index a5400a9bc..1ee9f31e1 100644
--- a/src/mailman/bin/export.py
+++ b/src/mailman/bin/export.py
@@ -134,7 +134,7 @@ class XMLDumper(object):
print >> self._fp, '<%s%s/>' % (_name, attrs)
else:
# The value might contain angle brackets.
- value = escape(unicode(_value))
+ value = escape(_value.decode('utf-8'))
print >> self._fp, '<%s%s>%s</%s>' % (_name, attrs, value, _name)
def _do_list_categories(self, mlist, k, subcat=None):