1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/422f368eb097/ changeset: 422f368eb097 user: natefoo date: 2013-02-11 21:21:00 summary: Don't attempt to load tool destinations when loading tools unless the application has a job config (i.e. it's Galaxy, not the Tool Shed). affected #: 1 file diff -r fbf37e72e1f430d20ec1da7f14c8eeec146abce6 -r 422f368eb0978b7d8ed5a320f1700603aea22ca1 lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py +++ b/lib/galaxy/tools/__init__.py @@ -1022,7 +1022,9 @@ if self.old_id != self.id: # Handle toolshed guids self_ids = [ self.id.lower(), self.id.lower().rsplit('/',1)[0], self.old_id.lower() ] - self.job_tool_configurations = self.app.job_config.get_job_tool_configurations(self_ids) + # In the toolshed context, there is no job config. + if 'job_config' in dir(self.app): + self.job_tool_configurations = self.app.job_config.get_job_tool_configurations(self_ids) # Is this a 'hidden' tool (hidden in tool menu) self.hidden = util.xml_text(root, "hidden") if self.hidden: self.hidden = util.string_as_bool(self.hidden) 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.