commit/galaxy-central: martenson: fix a bug with parsing params in data libraries API introduced recently with refactoring into managers
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a4f8476d787e/ Changeset: a4f8476d787e Branch: stable User: martenson Date: 2014-10-10 00:36:54+00:00 Summary: fix a bug with parsing params in data libraries API introduced recently with refactoring into managers Affected #: 1 file diff -r ff30da7a2873416a332b7700eb15e26a1bf3c46e -r a4f8476d787e254f11735896d0a3d2dced86e10b lib/galaxy/webapps/galaxy/api/libraries.py --- a/lib/galaxy/webapps/galaxy/api/libraries.py +++ b/lib/galaxy/webapps/galaxy/api/libraries.py @@ -39,7 +39,7 @@ .. seealso:: :attr:`galaxy.model.Library.dict_collection_visible_keys` """ - deleted = kwd.get( 'deleted', None ) + deleted = util.string_as_bool_or_none( kwd.get( 'deleted', None ) ) query = self.library_manager.list( trans, deleted ) libraries = [] for library in query: 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