1
0
forked from VimPlug/jedi

fix first tuple assignments

This commit is contained in:
David Halter
2013-02-08 18:46:56 +01:00
parent c831bfcca1
commit a5e9977e94
3 changed files with 31 additions and 34 deletions

View File

@@ -418,7 +418,7 @@ def related_names(definitions, search_name, mods):
else:
calls = _scan_array(stmt.get_commands(), search_name)
for d in stmt.assignment_details:
calls += _scan_array(d[1], search_name)
calls += _scan_array(d[0], search_name)
for call in calls:
names += check_call(call)
return names