[hg] galaxy 3370: Typo bug fix in tool_runner, should once again...
details: http://www.bx.psu.edu/hg/galaxy/rev/6dff2f938898 changeset: 3370:6dff2f938898 user: Greg Von Kuster <greg@bx.psu.edu> date: Wed Feb 10 16:02:11 2010 -0500 description: Typo bug fix in tool_runner, should once again be able to upload a new version of a library_dataset. diffstat: lib/galaxy/web/controllers/tool_runner.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r 44cada534e33 -r 6dff2f938898 lib/galaxy/web/controllers/tool_runner.py --- a/lib/galaxy/web/controllers/tool_runner.py Wed Feb 10 15:27:58 2010 -0500 +++ b/lib/galaxy/web/controllers/tool_runner.py Wed Feb 10 16:02:11 2010 -0500 @@ -160,7 +160,7 @@ if nonfile_params.get( 'folder_id', False ): replace_id = nonfile_params.get( 'replace_id', None ) if replace_id not in [ None, 'None' ]: - replace_dataset = trans.sa_session.query( l.LibraryDataset ).get( trans.security.decode_id( replace_id ) ) + replace_dataset = trans.sa_session.query( trans.app.model.LibraryDataset ).get( trans.security.decode_id( replace_id ) ) else: replace_dataset = None library_bunch = upload_common.handle_library_params( trans, nonfile_params, nonfile_params.folder_id, replace_dataset )
participants (1)
-
Greg Von Kuster