1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/3fc8ce62285b/ Changeset: 3fc8ce62285b User: jmchilton Date: 2015-01-05 17:35:38+00:00 Summary: Another hack to fix 08f8850. Need to figure out when tools are being loaded but don't have lineages defined. Affected #: 1 file diff -r 95189e44b9bfe5adac1841b72d621a99bff6c927 -r 3fc8ce62285bc3df5b934439e624f2d56cb062cf lib/galaxy/tools/toolbox/base.py --- a/lib/galaxy/tools/toolbox/base.py +++ b/lib/galaxy/tools/toolbox/base.py @@ -295,7 +295,10 @@ inserted = True if not inserted: # Check the tool's installed versions. - for tool_lineage_version in tool.lineage.get_versions(): + versions = [] + if hasattr( tool, 'lineage' ): + versions = tool.lineage.get_versions() + for tool_lineage_version in versions: lineage_id = tool_lineage_version.id index = self._integrated_tool_panel.index_of_tool_id( lineage_id ) if index: 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.