Fix formatted XML to output unicode strings

This commit is contained in:
Jon Tibble 2009-09-05 02:27:38 +01:00
parent a8cf61c199
commit 9992df2cb6
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ class ThemeXML(object):
"""
Pull out the XML string formatted for human consumption
"""
return self.theme_xml.toprettyxml(indent=' ', newl='\n')
return self.theme_xml.toprettyxml(indent=u' ', newl=u'\n')
def parse(self, xml):
"""