commit/galaxy-central: jmchilton: Remove invalid attribute name from DatasetCollection's to_dict.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/646c414e9051/ Changeset: 646c414e9051 User: jmchilton Date: 2014-07-25 03:01:14 Summary: Remove invalid attribute name from DatasetCollection's to_dict. This wasn't breaking anything per se, but was always adding a null 'name' attribute to collections dictified representation. This is a remnant from an earlier version of this code that had the name attribute on the DatasetCollection instead of DatasetCollectionInstance. Affected #: 1 file diff -r 56a7b27577dec0dac17ef94d4c131e7f1f61cb15 -r 646c414e90515d78d99461e090815f1a01f18c72 lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -2590,8 +2590,8 @@ class DatasetCollection( object, Dictifiable, UsesAnnotations ): """ """ - dict_collection_visible_keys = ( 'id', 'name', 'collection_type' ) - dict_element_visible_keys = ( 'id', 'name', 'collection_type' ) + dict_collection_visible_keys = ( 'id', 'collection_type' ) + dict_element_visible_keys = ( 'id', 'collection_type' ) def __init__( self, 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