1
0
forked from VimPlug/jedi

fixed some position issues

This commit is contained in:
David Halter
2013-04-28 22:12:32 +04:30
parent 56ca0cbfaa
commit 3eeecff1a1
2 changed files with 5 additions and 5 deletions

View File

@@ -430,8 +430,8 @@ class Parser(object):
except (StopIteration, common.MultiLevelStopIteration):
# on finish, set end_pos correctly
s = self.scope
while s is not None and (not isinstance(s, pr.Module)
and isinstance(s, pr.SubModule)):
while s is not None and not (isinstance(s, pr.Module)
and not isinstance(s, pr.SubModule)):
s.end_pos = self.end_pos
s = s.parent
raise