Fix ValueError, missing self.
This commit is contained in:
parent
76abd9e3f8
commit
0f85d5b070
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue