[ttLib] convert KeyView object to list for py23 compatibility

This commit is contained in:
Cosimo Lupo 2015-08-19 17:57:37 +01:00
parent 3142e3319e
commit 18d02aece9

View File

@ -230,7 +230,7 @@ class TTFont(object):
else:
if reorderTables is False:
# sort tables using the original font's order
tableOrder = self.reader.keys()
tableOrder = list(self.reader.keys())
else:
# use the recommended order from the OpenType specification
tableOrder = None