Skip to content

Commit

Permalink
Fix modules resolver (addition of the resolver_msg property on the base
Browse files Browse the repository at this point in the history
class references name and version attributes that were not defined in
the ModuleDependecy).
  • Loading branch information
natefoo committed Sep 21, 2017
1 parent 4345d8e commit 69a8700
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/galaxy/tools/deps/resolvers/modules.py
Expand Up @@ -161,6 +161,14 @@ def __init__(self, module_dependency_resolver, module_name, module_version=None,
self.module_version = module_version
self._exact = exact

@property
def name(self):
return self.module_name

@property
def version(self):
return self.module_version

@property
def exact(self):
return self._exact
Expand Down

0 comments on commit 69a8700

Please sign in to comment.