1
0
forked from VimPlug/jedi

Fix type error in BaseOutput.full_name

The previous version was doing list + string.
This commit is contained in:
Takafumi Arakaki
2012-11-24 22:06:29 +01:00
parent dfaa2ed38e
commit 4df3e1fb38

View File

@@ -97,7 +97,7 @@ class BaseOutput(object):
pass
for key, repl in self._tuple_mapping.items():
if tuple(path[:len(key)]) == key:
path = [repl] + path[len(key)]
path = [repl] + path[len(key):]
return '.'.join(path)