summaryrefslogtreecommitdiff
path: root/src/mailman/bin/export.py
diff options
context:
space:
mode:
authorBarry Warsaw2015-01-04 20:20:33 -0500
committerBarry Warsaw2015-01-04 20:20:33 -0500
commit4a612db8e89afed74173b93f3b64fa567b8417a3 (patch)
tree81a687d113079a25f93279f35c7eee2aa2572510 /src/mailman/bin/export.py
parent84af79988a4e916604cba31843778206efb7d1b8 (diff)
parentde181c1a40965a3a7deedd56a034a946f45b6984 (diff)
downloadmailman-4a612db8e89afed74173b93f3b64fa567b8417a3.tar.gz
mailman-4a612db8e89afed74173b93f3b64fa567b8417a3.tar.zst
mailman-4a612db8e89afed74173b93f3b64fa567b8417a3.zip
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):