diff options
Diffstat (limited to 'becommands/remove.py')
-rw-r--r-- | becommands/remove.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/becommands/remove.py b/becommands/remove.py index 386d9d4..cd877c5 100644 --- a/becommands/remove.py +++ b/becommands/remove.py @@ -35,7 +35,9 @@ def execute(args, test=False): ... print "Bug not found" Bug not found """ - options, args = get_parser().parse_args(args) + parser = get_parser() + options, args = parser.parse_args(args) + cmdutil.default_complete(options, args, parser) if len(args) != 1: raise cmdutil.UsageError, "Please specify a bug id." bd = bugdir.BugDir(from_disk=True, manipulate_encodings=not test) |