1
0
forked from VimPlug/jedi

Fix the previous error

This commit is contained in:
Takafumi Arakaki
2013-05-23 01:15:30 +02:00
parent ce92fd946b
commit a4922774c0
2 changed files with 7 additions and 2 deletions

View File

@@ -775,7 +775,10 @@ def goto(stmt, call_path=None):
commands = stmt.get_commands()
assert len(commands) == 1
call = commands[0]
call_path = list(call.generate_call_path())
if isinstance(call, (str, unicode)):
call_path = [call]
else:
call_path = list(call.generate_call_path())
scope = stmt.get_parent_until(pr.IsScope)
pos = stmt.start_pos