Author: gnichols Date: 2009-12-22 17:59:18 +0000 (Tue, 22 Dec 2009) New Revision: 273
Modified: trunk/v7/documentbase.py Log: 484657 - hts uses code deprecated in python 2.6
Modified: trunk/v7/documentbase.py =================================================================== --- trunk/v7/documentbase.py 2009-12-22 17:58:48 UTC (rev 272) +++ trunk/v7/documentbase.py 2009-12-22 17:59:18 UTC (rev 273) @@ -131,6 +131,7 @@ value = "" elif type(value) is int: value = "%u" % value + value = self.removeBadCharacters(value) return element.setAttribute(attribute, value.encode("utf-8"))
def appendDevice(self, device):
v7-commits@lists.stg.fedorahosted.org