Commit 4948b14a authored by Jason R. Coombs's avatar Jason R. Coombs

Avoid _resolve in get_module (causes failures).

parent 37d617cd
......@@ -73,4 +73,4 @@ def _resolve(spec):
def get_module(module, paths, info):
spec = importlib.util.find_spec(module, paths)
return importlib.util.module_from_spec(_resolve(spec))
return importlib.util.module_from_spec(spec)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment