1
0
forked from VimPlug/jedi

Actually get the first few written tests passing.

This commit is contained in:
Dave Halter
2014-10-09 13:21:30 +02:00
parent 68d23840bb
commit 92ee2a912e
2 changed files with 2 additions and 12 deletions

View File

@@ -127,7 +127,7 @@ class Node(Base):
__str__ = __unicode__
def get_code(self):
return str(self)
return "".join(c.get_code() for c in self.children)
@property
def prefix(self):