diff options
Diffstat (limited to 'becommands/set_root.py')
-rw-r--r-- | becommands/set_root.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/becommands/set_root.py b/becommands/set_root.py index 11f38b9..3749e28 100644 --- a/becommands/set_root.py +++ b/becommands/set_root.py @@ -55,7 +55,9 @@ def execute(args, test=False): UserError: No such directory: /highly-unlikely-to-exist >>> os.chdir('/') """ - 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 if len(args) == 1: |