forked from VimPlug/jedi
Fix type error in BaseOutput.full_name
The previous version was doing list + string.
This commit is contained in:
@@ -97,7 +97,7 @@ class BaseOutput(object):
|
|||||||
pass
|
pass
|
||||||
for key, repl in self._tuple_mapping.items():
|
for key, repl in self._tuple_mapping.items():
|
||||||
if tuple(path[:len(key)]) == key:
|
if tuple(path[:len(key)]) == key:
|
||||||
path = [repl] + path[len(key)]
|
path = [repl] + path[len(key):]
|
||||||
|
|
||||||
return '.'.join(path)
|
return '.'.join(path)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user