fonttools/fonttools-as.patch

15 lines
415 B
Diff

Index: Lib/fontTools/ttLib/tables/ttProgram.py
===================================================================
--- Lib/fontTools/ttLib/tables/ttProgram.py (revision 562)
+++ Lib/fontTools/ttLib/tables/ttProgram.py (revision 563)
@@ -394,7 +394,7 @@
p = Program()
p.fromBytecode(bc)
- as = p.getAssembly()
- p.fromAssembly(as)
+ asm = p.getAssembly()
+ p.fromAssembly(asm)
print bc == p.getBytecode()