aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/assign.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-11-27 11:03:21 -0500
committerW. Trevor King <wking@drexel.edu>2008-11-27 11:03:21 -0500
commit84551c20fe603ee9832b0b17061660cdf31a913e (patch)
tree20a4e0924b74baee0402213ed9b1dde4214fd840 /becommands/assign.py
parent216e39db0bd3491ee3740f69a8f2afd49f76eb2f (diff)
downloadbugseverywhere-84551c20fe603ee9832b0b17061660cdf31a913e.tar.gz
Added bugid_args option to cmdutil.default_complete.
Now most of the bug-id arguments support Bash completion. Since there will hopefully be lots of bugs in the database, I decided to filter the list of available bugs. Currently, we just auto-complete active bugs for most commands, with the exceptions of open (obviously) and status (which needs to work on all types of bugs).
Diffstat (limited to 'becommands/assign.py')
-rw-r--r--becommands/assign.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/becommands/assign.py b/becommands/assign.py
index 9869350..a41bbae 100644
--- a/becommands/assign.py
+++ b/becommands/assign.py
@@ -43,7 +43,8 @@ def execute(args, test=False):
"""
parser = get_parser()
options, args = parser.parse_args(args)
- cmdutil.default_complete(options, args, parser)
+ cmdutil.default_complete(options, args, parser,
+ bugid_args={0: lambda bug : bug.active==True})
assert(len(args) in (0, 1, 2))
if len(args) == 0:
raise cmdutil.UsageError("Please specify a bug id.")