This commit is contained in:
Dave Crossland 2013-09-04 15:42:31 +01:00
commit a2fb9508fb
2 changed files with 2 additions and 3 deletions

View File

@ -23,7 +23,7 @@ import gtk
import sys
import array
from . import misc, ttLib, cffLib
from fontTools import misc, ttLib, cffLib
class Row(object):

View File

@ -814,8 +814,7 @@ class GlyphCoordinates:
self._a.extend((x,y))
def extend(self, iterable):
for x,y in iterable:
self._a.extend((x,y))
self._a.extend(iterable)
def relativeToAbsolute(self):
a = self._a