1
0
forked from VimPlug/jedi

dynamic arrays are now working pretty good

This commit is contained in:
David Halter
2012-08-09 16:03:28 +02:00
parent c6f76a15ff
commit ae60bce836
6 changed files with 70 additions and 25 deletions

View File

@@ -91,7 +91,7 @@ class ImportPath(object):
if len(rest) > 1 or rest and self.is_like_search:
scopes = []
elif rest:
scopes = evaluate.follow_path(iter(rest), scope)
scopes = list(evaluate.follow_path(iter(rest), scope))
else:
scopes = [scope]