diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-09 17:50:09 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-09 17:50:09 +0000 |
commit | b2b03a3d1f06e7dba218eccbac0d045cad0a276e (patch) | |
tree | 6ccf8c54f1f8a74f5bdf127b92d81af9179f8b25 /be | |
parent | 8d6a6a2af58408c4066b753f28d5b13ae6ee587a (diff) | |
download | bugseverywhere-b2b03a3d1f06e7dba218eccbac0d045cad0a276e.tar.gz |
Implemented bug status and "active" flag
Diffstat (limited to 'be')
-rwxr-xr-x | be | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |