commit/galaxy-central: jmchilton: Bugfix for functional tests broken with 68daf6d.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/02efb1123d46/ Changeset: 02efb1123d46 User: jmchilton Date: 2014-12-30 14:43:28+00:00 Summary: Bugfix for functional tests broken with 68daf6d. Affected #: 1 file diff -r 87825915116972a38b2f0d18943ef2959d674f97 -r 02efb1123d469986a051e7a8015c9d56635efd8a lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py +++ b/lib/galaxy/tools/__init__.py @@ -573,6 +573,11 @@ return [ tool ] return [] + @property + def tools_by_id( self ): + # Deprecated method, TODO - eliminate calls to this in test/. + return self._tools_by_id + def tools( self ): return self._tools_by_id.iteritems() 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