1
0
forked from VimPlug/jedi

Remove a usage of the old module path.

This commit is contained in:
Dave Halter
2017-03-28 01:43:40 +02:00
parent 6a9c2f8795
commit 1d0796ac07
3 changed files with 3 additions and 3 deletions

View File

@@ -95,7 +95,7 @@ def parse(code=None, path=None, grammar=None, error_recovery=True,
kwargs = {}
if error_recovery:
parser = ParserWithRecovery
kwargs = dict(module_path=path)
kwargs = dict()
else:
kwargs = dict(start_symbol=start_symbol)
parser = Parser