workaround before python3 support

This commit is contained in:
Jérôme Rapinat 2015-03-19 17:39:55 +01:00 committed by Ross Gammon
parent bc6cc2befe
commit a1f67b92e0

View File

@ -169,7 +169,10 @@ def TipsParse(filename, mark):
tips = open('../data/tips.xml.in.h', 'w') tips = open('../data/tips.xml.in.h', 'w')
marklist = root.iter(mark) marklist = root.iter(mark)
for key in marklist: for key in marklist:
tip = ElementTree.tostring(key, encoding="UTF-8") if sys.version_info[0] < 3:
tip = ElementTree.tostring(key, encoding="UTF-8")
else: # no python3 support yet
return
tip = tip.replace("<?xml version='1.0' encoding='UTF-8'?>", "") tip = tip.replace("<?xml version='1.0' encoding='UTF-8'?>", "")
tip = tip.replace('\n<_tip number="%(number)s">' % key.attrib, "") tip = tip.replace('\n<_tip number="%(number)s">' % key.attrib, "")
tip = tip.replace("<br />", "<br/>") tip = tip.replace("<br />", "<br/>")