commit | c2297cd41d6c00b95f857b65bc9fd4b57559ac5e | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 06:26:55 2013 -0500 |
committer | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 14:01:45 2013 -0500 |
tree | 0bc16a5dafb08c1ea2f33744a58e61fe918de885 | |
parent | 6890d050efb171abb7f088873d0c3a97f93af09d [diff] [blame] |
2to3 --fix=dict with manual cleanup
diff --git a/Lib/fontTools/ttLib/sfnt.py b/Lib/fontTools/ttLib/sfnt.py index d69b7b7..3cac90f 100644 --- a/Lib/fontTools/ttLib/sfnt.py +++ b/Lib/fontTools/ttLib/sfnt.py
@@ -238,7 +238,7 @@ def _calcMasterChecksum(self, directory): # calculate checkSumAdjustment - tags = self.tables.keys() + tags = list(self.tables.keys()) checksums = [] for i in range(len(tags)): checksums.append(self.tables[tags[i]].checkSum)