Fixed error in empty property on QCombination

This commit is contained in:
Harry Marr
2010-10-03 23:22:36 +01:00
parent db2f64c290
commit c0f7c4ca2d
2 changed files with 11 additions and 1 deletions

View File

@@ -158,7 +158,7 @@ class QCombination(QNode):
@property
def empty(self):
return not bool(self.query)
return not bool(self.children)
class NewQ(QNode):