aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/merge.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/merge.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/merge.py')
-rw-r--r--becommands/merge.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/becommands/merge.py b/becommands/merge.py
index 583bd28..9f324f7 100644
--- a/becommands/merge.py
+++ b/becommands/merge.py
@@ -122,7 +122,10 @@ 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,
+ 1: lambda bug : bug.active==True})
+
if len(args) < 2:
raise cmdutil.UsageError("Please specify two bug ids.")
if len(args) > 2: