commit/galaxy-central: dannon: data_transfer workflow execute was using replacement_dict (which didn't exist in scope) instead of specifying it empty
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/5e3567cdc089/ Changeset: 5e3567cdc089 User: dannon Date: 2013-08-30 04:58:30 Summary: data_transfer workflow execute was using replacement_dict (which didn't exist in scope) instead of specifying it empty Affected #: 1 file diff -r 1cd27d43ab14111326ab9601c7d818e6b15a3e74 -r 5e3567cdc08984012b6b26162a4ebe75e77e942b lib/galaxy/jobs/deferred/data_transfer.py --- a/lib/galaxy/jobs/deferred/data_transfer.py +++ b/lib/galaxy/jobs/deferred/data_transfer.py @@ -367,7 +367,7 @@ outputs[ step.id ] = out_data for pja in step.post_job_actions: if pja.action_type in ActionBox.immediate_actions: - ActionBox.execute(self.app, self.sa_session, pja, job, replacement_dict) + ActionBox.execute(self.app, self.sa_session, pja, job, replacement_dict=None) else: job.add_post_job_action(pja) else: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org