1
0
forked from VimPlug/jedi

fix the remaining refactoring problems

This commit is contained in:
David Halter
2013-02-05 16:38:23 +01:00
parent bc08ea9630
commit b3a0249475
3 changed files with 6 additions and 4 deletions

View File

@@ -142,7 +142,7 @@ class CachedFastParser(type):
return parsing.Parser(source, module_path, user_position)
pi = cache.parser_cache.get(module_path, None)
if pi is None or isinstance(pi.parser, pr.Parser):
if pi is None or isinstance(pi.parser, parsing.Parser):
p = super(CachedFastParser, self).__call__(source, module_path,
user_position)
else: