Commit b71a4c5b authored by mvdbeek's avatar mvdbeek
Browse files

Merge branch 'release_20.01' into release_20.05

parents b6836cb0 d5cb3c3e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1313,7 +1313,7 @@ class Tool(Dictifiable):
    def populate_resource_parameters(self, tool_source):
        root = getattr(tool_source, 'root', None)
        if root is not None and hasattr(self.app, 'job_config') and hasattr(self.app.job_config, 'get_tool_resource_xml'):
            resource_xml = self.app.job_config.get_tool_resource_xml(root.get('id'), self.tool_type)
            resource_xml = self.app.job_config.get_tool_resource_xml(root.get('id', '').lower(), self.tool_type)
            if resource_xml is not None:
                inputs = root.find('inputs')
                if inputs is None: