From 1a93c64cd05662119fd71ef3693bbbfa051c0f70 Mon Sep 17 00:00:00 2001 From: Akinori Hattori Date: Thu, 22 Nov 2012 18:23:28 +0900 Subject: [PATCH] fix typo --- jedi/builtin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/builtin.py b/jedi/builtin.py index ca948aa3..49e3a85b 100644 --- a/jedi/builtin.py +++ b/jedi/builtin.py @@ -55,7 +55,7 @@ class CachedModule(object): # In case there is already a module cached and this module # has to be reparsed, we also need to invalidate the import # caches. - imports.invalidate_star_import_cache(self._parser.module) + imports.invalidate_star_import_cache(parser.module) raise KeyError() except KeyError: self._load_module()