Skip to content

Commit

Permalink
Merge branch 'release_15.05' into release_15.07
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Sep 25, 2015
2 parents 85df2f6 + 0bf60a5 commit e006745
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/galaxy/workflow/run.py
Expand Up @@ -285,7 +285,10 @@ def replacement_for_connection( self, connection ):
raise modules.DelayedWorkflowEvaluation()
return replacement

def set_outputs_for_input( self, step, outputs={} ):
def set_outputs_for_input( self, step, outputs=None ):
if outputs is None:
outputs = {}

if self.inputs_by_step_id:
outputs[ 'output' ] = self.inputs_by_step_id[ step.id ]

Expand Down

0 comments on commit e006745

Please sign in to comment.