fix typos

This commit is contained in:
David Rose 2001-09-25 01:08:12 +00:00
parent e3a9436f07
commit a45633710c
2 changed files with 2 additions and 2 deletions

View File

@ -54,5 +54,5 @@
self.addUint32(int(i[0]*divisor))
self.addUint8(int(i[1]*divisor))
else:
raise Exception("Error: No such type as: " + subatomicType)
raise Exception("Error: No such type as: " + str(subatomicType))
return None

View File

@ -127,7 +127,7 @@
b = self.getUint8()
retVal.append((a / float(divisor), b / float(divisor)))
else:
raise Exception("Error: No such type as: " + str(subAtomicType))
raise Exception("Error: No such type as: " + str(subatomicType))