status: closed
-summary: Implement bug updating (not comments). Check on the whitespace of
- the summary field while you're at it.
+summary: Implement bug updating (not comments). Check on the whitespace of the summary
+ field while you're at it.
time: Sat, 31 Jan 2009 02:59:54 +0000
self.allowed_severity_values = allowed_severity_values
def _build_tree(self, child_fn):
- root = tree.Tree()
+ root = libbe.util.tree.Tree()
root.bug = self.root_bug
root.depth = 0
stack = [root]
if self.allowed_severity_values != None \
and not bug.severity in self.allowed_severity_values:
continue
- child = tree.Tree()
+ child = libbe.util.tree.Tree()
child.bug = bug
child.depth = node.depth+1
node.append(child)