commit/galaxy-central: dannon: Fix import error of collections_util in histories manager.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/d671e182d2e0/ Changeset: d671e182d2e0 User: dannon Date: 2015-01-22 22:03:06+00:00 Summary: Fix import error of collections_util in histories manager. Affected #: 1 file diff -r 171ddb2fd2f8cdf3ef2e949f977ae01f9bff57e8 -r d671e182d2e0ea0d4ccb486efabe32c8353db022 lib/galaxy/managers/histories.py --- a/lib/galaxy/managers/histories.py +++ b/lib/galaxy/managers/histories.py @@ -13,6 +13,8 @@ from galaxy.managers import base from galaxy.managers import sharable from galaxy.managers import hdas +from galaxy.managers import collections_util + import logging log = logging.getLogger( __name__ ) @@ -91,7 +93,7 @@ super( HistoryManager, self ).purge( trans, history, flush=flush, **kwargs ) # ......................................................................... contents - + # ......................................................................... current def get_current( self, trans ): @@ -123,7 +125,7 @@ #TODO: instantiate here? really? history_serializer = HistorySerializer( self.app ) hda_serializer = hdas.HDASerializer( self.app ) - collection_dictifier = managers.collections_util.dictify_dataset_collection_instance + collection_dictifier = collections_util.dictify_dataset_collection_instance history_dictionary = {} contents_dictionaries = [] 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