Fix ValueError, missing self.

This commit is contained in:
Paulo Henrique Silva 2014-10-26 22:25:26 -02:00 committed by Hamilton Kibbe
parent 76abd9e3f8
commit 0f85d5b070

View file

@ -394,7 +394,7 @@ class AMParamStmt(ParamStmt):
return '%AM{0}*{1}*%'.format(self.name, self.macro)
def __str__(self):
return '<Aperture Macro %s: %s>' % (self.name, macro)
return '<Aperture Macro %s: %s>' % (self.name, self.macro)
class INParamStmt(ParamStmt):