diff options
Diffstat (limited to 'becommands/list.py')
-rw-r--r-- | becommands/list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/list.py b/becommands/list.py index e89195b..5bd54a2 100644 --- a/becommands/list.py +++ b/becommands/list.py @@ -11,7 +11,7 @@ def execute(args): if bug.severity not in severity: return False return True - all_bugs = list(bugdir.tree_root(os.getcwd()).list()) + all_bugs = list(cmdutil.bug_tree().list()) bugs = [b for b in all_bugs if filter(b) ] if len(bugs) == 0: print "No matching bugs found" |