1
0
forked from VimPlug/jedi

Fix remaining issues with sys path checks.

This commit is contained in:
Dave Halter
2014-09-25 18:27:35 +02:00
parent f4c99259b5
commit 47c4369d28

View File

@@ -1380,7 +1380,7 @@ class StatementElement(Simple):
def get_code(self):
if self.next is not None:
s = '.' if isinstance(self, Array) else ''
s = '.' if not isinstance(self.next, Array) else ''
return s + self.next.get_code()
return ''