Changing bytes variable name not to squeeze bytes type

This commit is contained in:
Nicolas Pieuchot 2013-04-25 23:03:37 +02:00
parent 4d136d94ce
commit 028e63865e

View File

@ -151,8 +151,8 @@ class FreeTypeFont:
if isStringType(font): if isStringType(font):
self.font = core.getfont(font, size, index, encoding) self.font = core.getfont(font, size, index, encoding)
else: else:
bytes = font.read() font_bytes = font.read()
self.font = core.getfont("", size, index, encoding, bytes) self.font = core.getfont("", size, index, encoding, font_bytes)
def getname(self): def getname(self):
return self.font.family, self.font.style return self.font.family, self.font.style