diff options
Diffstat (limited to 'becommands/merge.py')
-rw-r--r-- | becommands/merge.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/becommands/merge.py b/becommands/merge.py index d1829d6..583bd28 100644 --- a/becommands/merge.py +++ b/becommands/merge.py @@ -120,7 +120,9 @@ def execute(args, test=False): >>> print b.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) < 2: raise cmdutil.UsageError("Please specify two bug ids.") if len(args) > 2: |