1
0
forked from VimPlug/jedi

Renamed mixin .py files to .pym (fixes davidhalter/jedi-vim#41)

This commit is contained in:
Danilo Bargen
2012-11-20 11:18:59 +01:00
parent 03f4dd5516
commit 9f20243dd3
6 changed files with 1 additions and 1 deletions

View File

@@ -193,7 +193,7 @@ class Parser(CachedModule):
if name == '__builtin__' and not is_py3k:
name = 'builtins'
path = os.path.dirname(os.path.abspath(__file__))
f = open(os.path.sep.join([path, 'mixin', name]) + '.py')
f = open(os.path.sep.join([path, 'mixin', name]) + '.pym')
except IOError:
return {}
else: