fixed multi-arg .append() call, for Python 1.6 compatibility.
git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@93 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
parent
d29f289911
commit
7bf760f45c
@ -176,7 +176,7 @@ class Glyph:
|
|||||||
def getcontours(self, scale, move):
|
def getcontours(self, scale, move):
|
||||||
contours = []
|
contours = []
|
||||||
for i in range(len(self.contours)):
|
for i in range(len(self.contours)):
|
||||||
contours.append((self.contours[i] * Numeric.array(scale) + move), self.flags[i])
|
contours.append(((self.contours[i] * Numeric.array(scale) + move), self.flags[i]))
|
||||||
return contours
|
return contours
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user