commit/galaxy-central: dannon: Fix get_hda_list 'get_accessible' variable naming -- previously would blow up as undefined.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/12075315e61b/ Changeset: 12075315e61b User: dannon Date: 2013-08-06 22:05:09 Summary: Fix get_hda_list 'get_accessible' variable naming -- previously would blow up as undefined. Affected #: 1 file diff -r e08148b86a59421f6faa616529ae262a40138485 -r 12075315e61b01f4b163a1074781eabadc47da00 lib/galaxy/web/base/controller.py --- a/lib/galaxy/web/base/controller.py +++ b/lib/galaxy/web/base/controller.py @@ -537,7 +537,9 @@ hda = None try: hda = self.get_dataset( trans, id, - check_ownership=check_ownership, check_accesible=check_accesible, check_state=check_state ) + check_ownership=check_ownership, + check_accessible=check_accessible, + check_state=check_state ) except Exception, exception: pass hdas.append( hda ) 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