summaryrefslogtreecommitdiff
path: root/feedgenerator/django/utils/xmlutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'feedgenerator/django/utils/xmlutils.py')
-rw-r--r--feedgenerator/django/utils/xmlutils.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/feedgenerator/django/utils/xmlutils.py b/feedgenerator/django/utils/xmlutils.py
index fc1be2b..d234708 100644
--- a/feedgenerator/django/utils/xmlutils.py
+++ b/feedgenerator/django/utils/xmlutils.py
@@ -2,8 +2,6 @@
Utilities for XML generation/parsing.
"""
-import six
-
from xml.sax.saxutils import XMLGenerator, quoteattr
class SimplerXMLGenerator(XMLGenerator):
@@ -20,4 +18,4 @@ class SimplerXMLGenerator(XMLGenerator):
# sort attributes for consistent output
for (name, value) in sorted(attrs.items()):
self._write(' %s=%s' % (name, quoteattr(value)))
- self._write(six.u('>'))
+ self._write(str('>'))