fix more bugs in group count tree

This commit is contained in:
Damien Elmes 2011-10-24 01:28:43 +09:00
parent 8be318d749
commit c16cb6ee9b

View file

@ -171,9 +171,9 @@ order by due""" % self._groupLimit(),
new += c[3]
else:
# set new string to tail
c[0] = c[0][1]
c[0] = c[0][1:]
children.append(c)
children = self._groupChildren(children)
children = self._groupChildrenMain(children)
# tally up children counts
for ch in children:
rev += ch[2]