diff options
author | Eric Lin <anselor@gmail.com> | 2020-08-04 13:46:48 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-08-04 15:24:53 -0400 |
commit | 1a82b37b6c23490b1d9127095e3ee4f2db21a85b (patch) | |
tree | eb45b08c177ec9d032436af5d158a0ad065dc967 /examples/python_scripting.py | |
parent | c983abaa881a3ac6110a90194def660489b2d5cc (diff) | |
download | cmd2-git-1a82b37b6c23490b1d9127095e3ee4f2db21a85b.tar.gz |
Marked with_arparser_and_unknown_args deprecated and consolidated
implementation as an option to with_argparser instead.
Diffstat (limited to 'examples/python_scripting.py')
-rwxr-xr-x | examples/python_scripting.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/python_scripting.py b/examples/python_scripting.py index 69cfb672..6e4295d4 100755 --- a/examples/python_scripting.py +++ b/examples/python_scripting.py @@ -96,7 +96,7 @@ class CmdLineApp(cmd2.Cmd): dir_parser = argparse.ArgumentParser() dir_parser.add_argument('-l', '--long', action='store_true', help="display in long format with one item per line") - @cmd2.with_argparser_and_unknown_args(dir_parser) + @cmd2.with_argparser(dir_parser, with_unknown_args=True) def do_dir(self, args, unknown): """List contents of current directory.""" # No arguments for this command |