details:
http://www.bx.psu.edu/hg/galaxy/rev/2772ab12e361
changeset: 3300:2772ab12e361
user: James Taylor <james(a)jamestaylor.org>
date: Thu Jan 28 15:54:46 2010 -0500
description:
Workflow: fix problem with upgrade_messages for input dataset modules
diffstat:
lib/galaxy/web/controllers/workflow.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diffs (19 lines):
diff -r c9d95fd8bfe9 -r 2772ab12e361 lib/galaxy/web/controllers/workflow.py
--- a/lib/galaxy/web/controllers/workflow.py Thu Jan 28 14:52:02 2010 -0500
+++ b/lib/galaxy/web/controllers/workflow.py Thu Jan 28 15:54:46 2010 -0500
@@ -714,6 +714,7 @@
# If kwargs were provided, the states for each step should have
# been POSTed
for step in workflow.steps:
+ step.upgrade_messages = {}
# Connections by input name
step.input_connections_by_name = \
dict( ( conn.input_name, conn ) for conn in step.input_connections )
@@ -771,6 +772,7 @@
else:
# Prepare each step
for step in workflow.steps:
+ step.upgrade_messages = {}
# Contruct modules
if step.type == 'tool' or step.type is None:
# Restore the tool state for the step