diff options
Diffstat (limited to 'becommands/show.py')
-rw-r--r-- | becommands/show.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/becommands/show.py b/becommands/show.py index c58e6bb..3c00712 100644 --- a/becommands/show.py +++ b/becommands/show.py @@ -35,7 +35,9 @@ def execute(args, test=False): Bug A <BLANKLINE> """ - 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 bd = bugdir.BugDir(from_disk=True, manipulate_encodings=not test) |