| 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 Sun Jul 17 13:45:26 2011 | http://epydoc.sourceforge.net |