1
0
forked from VimPlug/jedi

Fixed sys path scanning again.

This commit is contained in:
Dave Halter
2016-11-29 18:28:28 +01:00
parent ba52ecd0df
commit 60234e68ca
3 changed files with 19 additions and 11 deletions

View File

@@ -71,7 +71,7 @@ class BaseDefinition(object):
if self.in_builtin_module():
self.module_path = None
else:
self.module_path = self._module.path
self.module_path = self._module.py__file__()
"""Shows the file path of a module. e.g. ``/usr/lib/python2.7/os.py``"""
@property