Trees | Indices | Help |
|
---|
|
object --+ | exceptions.BaseException --+ | exceptions.Exception --+ | ArgumentsInTheWrongPlace
When calling BuildFactory.addStep(stepinstance), addStep() only takes one argument. You passed extra arguments to addStep(), which you probably intended to pass to your BuildStep constructor instead. For example, you should do:
f.addStep(ShellCommand(command=['echo','stuff'], haltOnFailure=True))
instead of:
f.addStep(ShellCommand(command=['echo','stuff']), haltOnFailure=True)
Instance Methods | |
Inherited from Inherited from Inherited from |
Properties | |
Inherited from Inherited from |
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Nov 21 16:22:44 2012 | http://epydoc.sourceforge.net |