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:
Just 2000-03-14 23:21:26 +00:00
parent d29f289911
commit 7bf760f45c

View File

@ -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