diff options
author | W. Trevor King <wking@drexel.edu> | 2010-06-26 09:44:04 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-06-26 09:44:04 -0400 |
commit | 7effcfb2b344fca6e82fd84f1dcfb627b461f5c1 (patch) | |
tree | 061a7a9b1e93bd5f5886d707fbfa0eb218744291 | |
parent | a0a75b27e181b74bb7ec35563ae79e4bc7e999bb (diff) | |
download | bugseverywhere-7effcfb2b344fca6e82fd84f1dcfb627b461f5c1.tar.gz |
Fix Tree() calls in libbe.command.depend
3 files changed, 5 insertions, 6 deletions
diff --git a/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/171819aa-c092-4ddf-ace3-797635fa2572/values b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/171819aa-c092-4ddf-ace3-797635fa2572/values index 66155bd..c287b3d 100644 --- a/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/171819aa-c092-4ddf-ace3-797635fa2572/values +++ b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/171819aa-c092-4ddf-ace3-797635fa2572/values @@ -15,8 +15,7 @@ severity: fatal status: closed -summary: Get a basic template mocked up for the list page. Go further from - there. +summary: Get a basic template mocked up for the list page. Go further from there. time: Fri, 30 Jan 2009 03:16:26 +0000 diff --git a/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/545311df-8c88-4504-9f83-11d7c5d8aa50/values b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/545311df-8c88-4504-9f83-11d7c5d8aa50/values index 790da5e..6501924 100644 --- a/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/545311df-8c88-4504-9f83-11d7c5d8aa50/values +++ b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/545311df-8c88-4504-9f83-11d7c5d8aa50/values @@ -15,8 +15,8 @@ severity: minor 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 diff --git a/libbe/command/depend.py b/libbe/command/depend.py index b9f6354..09a3743 100644 --- a/libbe/command/depend.py +++ b/libbe/command/depend.py @@ -376,7 +376,7 @@ class DependencyTree (object): 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] @@ -391,7 +391,7 @@ class DependencyTree (object): 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) |