From 24e23df0e781fcf18dc512e49a53d5271c2184f1 Mon Sep 17 00:00:00 2001 From: Michael Schindler Date: Sat, 6 May 2006 18:41:19 +0000 Subject: [PATCH] fixed a typo git-svn-id: https://pyx.svn.sourceforge.net/svnroot/pyx/trunk/pyx@2640 069f4177-920e-0410-937b-c2a4a81bcd90 --- pyx/font/t1font.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyx/font/t1font.py b/pyx/font/t1font.py index fb6f20e3..0ca71db2 100644 --- a/pyx/font/t1font.py +++ b/pyx/font/t1font.py @@ -938,7 +938,7 @@ class T1font: if self.hasflexhintsubrs and subrsmin < len(self.flexhintsubrs): # According to the spec we need to keep all the flex and hint subrs # as long as any of it is used. - for subr in len(self.flexhintsubrs): + for subr in range(len(self.flexhintsubrs)): subrs[subr] = 1 else: subrsmax = -1 -- 2.11.4.GIT