Removed debug print statments.
This commit is contained in:
parent
259add178e
commit
2e253450cd
|
@ -47,7 +47,6 @@ def workflow_list():
|
|||
|
||||
def find_workflow(basename):
|
||||
"""Searches for a workflow with a given filename."""
|
||||
print "find_workflow"
|
||||
|
||||
# List all .py files that can contain workflow classes
|
||||
wf_path = main.options.workflowdir.split(':')
|
||||
|
@ -74,7 +73,6 @@ class Workflow:
|
|||
description = "Workflow Description"
|
||||
|
||||
def __init__(self):
|
||||
print "Setting stages"
|
||||
self.stages = []
|
||||
self.stages_by_id = {}
|
||||
|
||||
|
@ -83,7 +81,6 @@ class Workflow:
|
|||
Returns the file name if the file exists in the data directory, which
|
||||
is defined as datadir/workflowname. If the file does not exist, or the
|
||||
workflow does not have an identificator, this method returns None."""
|
||||
print os.path.join(main.options.datadir, self.ident, filename)
|
||||
if self.ident == None:
|
||||
return None
|
||||
fn = os.path.join(main.options.datadir, self.ident, filename)
|
||||
|
@ -113,7 +110,6 @@ class EmptyWorkflow(Workflow):
|
|||
name = 'Empty Workflow'
|
||||
|
||||
def __init__(self):
|
||||
print "initing empty workflow"
|
||||
Workflow.__init__(self)
|
||||
|
||||
|
||||
|
|
Reference in New Issue