commit | 97dea0a5d02ba1655d27a06fe91540e3495b8ef9 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 03:34:48 2013 -0500 |
committer | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 03:34:48 2013 -0500 |
tree | e4cda9cefa2e9f185a0ae02cf04dd38a0b84cfad | |
parent | b466efef28b2b6652b54b59a059be2e32b3ea90b [diff] [blame] |
2to3 --fix=xrange
diff --git a/Lib/fontTools/ttLib/macUtils.py b/Lib/fontTools/ttLib/macUtils.py index d65f70a..8e65128 100644 --- a/Lib/fontTools/ttLib/macUtils.py +++ b/Lib/fontTools/ttLib/macUtils.py
@@ -31,7 +31,7 @@ Res.UseResFile(resref) numSFNTs = Res.Count1Resources('sfnt') Res.CloseResFile(resref) - return range(1, numSFNTs + 1) + return list(range(1, numSFNTs + 1)) def openTTFonts(path):