diff options
Diffstat (limited to 'becommands/close.py')
-rw-r--r-- | becommands/close.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/becommands/close.py b/becommands/close.py index d125397..37fa032 100644 --- a/becommands/close.py +++ b/becommands/close.py @@ -31,7 +31,9 @@ def execute(args, test=False): >>> print bd.bug_from_shortname("a").status closed """ - 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) == 0: raise cmdutil.UsageError("Please specify a bug id.") if len(args) > 1: |