commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/55b651e70aef/ Changeset: 55b651e70aef Branch: next-stable User: carlfeberhard Date: 2013-03-26 20:10:42 Summary: fix for exception handling in root.history Affected #: 1 file diff -r ea2a5e240c41c9d58a3982d21af362781db980da -r 55b651e70aef895545bf88039f6a5558976a1842 lib/galaxy/webapps/galaxy/controllers/root.py --- a/lib/galaxy/webapps/galaxy/controllers/root.py +++ b/lib/galaxy/webapps/galaxy/controllers/root.py @@ -155,9 +155,9 @@ 'history_id': history_dictionary[ 'id' ], 'state' : trans.model.Dataset.states.ERROR, 'visible' : True, - 'misc_info' : str( exception ), + 'misc_info' : str( exc ), 'misc_blurb': 'Failed to retrieve dataset information.', - 'error' : str( exception ) + 'error' : str( exc ) } hda_dictionaries.append( return_val ) https://bitbucket.org/galaxy/galaxy-central/commits/42b616e64d05/ Changeset: 42b616e64d05 User: carlfeberhard Date: 2013-03-26 20:11:34 Summary: merge next-stable Affected #: 1 file diff -r eb7f1d35ad35e2410393362b636039714c873b5e -r 42b616e64d0575012d40acf69a355b98bf954db7 lib/galaxy/webapps/galaxy/controllers/root.py --- a/lib/galaxy/webapps/galaxy/controllers/root.py +++ b/lib/galaxy/webapps/galaxy/controllers/root.py @@ -155,9 +155,9 @@ 'history_id': history_dictionary[ 'id' ], 'state' : trans.model.Dataset.states.ERROR, 'visible' : True, - 'misc_info' : str( exception ), + 'misc_info' : str( exc ), 'misc_blurb': 'Failed to retrieve dataset information.', - 'error' : str( exception ) + 'error' : str( exc ) } hda_dictionaries.append( return_val ) 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