aboutsummaryrefslogtreecommitdiffstats
path: root/be
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2005-03-09 17:50:09 +0000
committerAaron Bentley <abentley@panoramicfeedback.com>2005-03-09 17:50:09 +0000
commitb2b03a3d1f06e7dba218eccbac0d045cad0a276e (patch)
tree6ccf8c54f1f8a74f5bdf127b92d81af9179f8b25 /be
parent8d6a6a2af58408c4066b753f28d5b13ae6ee587a (diff)
downloadbugseverywhere-b2b03a3d1f06e7dba218eccbac0d045cad0a276e.tar.gz
Implemented bug status and "active" flag
Diffstat (limited to 'be')
-rwxr-xr-xbe4
1 files changed, 2 insertions, 2 deletions
diff --git a/be b/be
index e87ed0b..a93617a 100755
--- a/be
+++ b/be
@@ -12,9 +12,9 @@ import sys
import os
def list_bugs(args):
- bugs = list(tree_root(os.getcwd()).list())
+ bugs = [b for b in tree_root(os.getcwd()).list() if b.active]
if len(bugs) == 0:
- print "No bugs found"
+ print "No matching bugs found"
for bug in bugs:
print "%s: %s" % (unique_name(bug, bugs), bug.summary)