[hg] galaxy 3251: Minor fix for an exception string in rerun met...
details: http://www.bx.psu.edu/hg/galaxy/rev/2449250fcc13 changeset: 3251:2449250fcc13 user: Dan Blankenberg <dan@bx.psu.edu> date: Tue Jan 19 16:12:31 2010 -0500 description: Minor fix for an exception string in rerun method of tool_runner.py diffstat: lib/galaxy/web/controllers/tool_runner.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r 82082fd1da62 -r 2449250fcc13 lib/galaxy/web/controllers/tool_runner.py --- a/lib/galaxy/web/controllers/tool_runner.py Tue Jan 19 14:22:31 2010 -0500 +++ b/lib/galaxy/web/controllers/tool_runner.py Tue Jan 19 16:12:31 2010 -0500 @@ -104,7 +104,7 @@ try: params_objects = job.get_param_values( trans.app ) except: - raise Exception( "Failed to get paramemeters for dataset id %d " % hid ) + raise Exception( "Failed to get paramemeters for dataset id %d " % data.id ) # Unpack unvalidated values to strings, they'll be validated when the # form is submitted (this happens when re-running a job that was # initially run by a workflow)
participants (1)
-
Greg Von Kuster