diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-04-22 17:31:58 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-04-22 17:31:58 +0000 |
commit | 29c24ffb276bfdcc625e680118c8e9f449b868e8 (patch) | |
tree | ec3056bd40081e350c4b4b04ca5d7a6bfcf58625 /becommands | |
parent | 43951f500ed2ce6dae61f34cc499d13535f47c50 (diff) | |
parent | 1d1d267da9b6c65937ac5aff529d6f98a692bbd5 (diff) | |
download | bugseverywhere-29c24ffb276bfdcc625e680118c8e9f449b868e8.tar.gz |
Merge (Oleg Romanyshyn)
Patches applied:
* oromanyshyn@panoramicfeedback.com--development2/bugs-everywhere--0--patch-2
* Changed help message for inprogress
* oromanyshyn@panoramicfeedback.com--development2/bugs-everywhere--0--patch-3
* Changed layout of the displaying bugs (list and show commands)
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/inprogress.py | 2 | ||||
-rw-r--r-- | becommands/list.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/becommands/inprogress.py b/becommands/inprogress.py index 968551e..f1bc32c 100644 --- a/becommands/inprogress.py +++ b/becommands/inprogress.py @@ -1,4 +1,4 @@ -"""Close a bug""" +"""Bug fixing in progress""" from libbe import cmdutil def execute(args): """ diff --git a/becommands/list.py b/becommands/list.py index f602ba3..7c0f8de 100644 --- a/becommands/list.py +++ b/becommands/list.py @@ -66,7 +66,7 @@ def execute(args): if len(cur_bugs) > 0: print cmdutil.underlined(title) for bug in cur_bugs: - print cmdutil.bug_summary(bug, all_bugs, no_target=no_target) + print cmdutil.bug_summary(bug, all_bugs, no_target=no_target, shortlist=True) list_bugs(my_target_bugs, "Bugs assigned to you for target %s" % tree.target, |