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 Fri Oct 29 10:00:42 2010 | http://epydoc.sourceforge.net |