summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-08-04 14:15:22 -0400
committeranselor <anselor@gmail.com>2020-08-04 15:24:53 -0400
commit2c99c0d9e7ddea1a93e97e3198aea01beca7c5d5 (patch)
tree828252caefecd67ac0403a985eddc19ce31ff3e1 /examples
parent1a82b37b6c23490b1d9127095e3ee4f2db21a85b (diff)
downloadcmd2-git-2c99c0d9e7ddea1a93e97e3198aea01beca7c5d5.tar.gz
Removed obsolete argument1.3.0
Diffstat (limited to 'examples')
-rw-r--r--examples/modular_subcommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/modular_subcommands.py b/examples/modular_subcommands.py
index e1bc6b7b..bf4a08ae 100644
--- a/examples/modular_subcommands.py
+++ b/examples/modular_subcommands.py
@@ -91,7 +91,7 @@ class ExampleApp(cmd2.Cmd):
self.poutput('Vegetables unloaded')
cut_parser = cmd2.Cmd2ArgumentParser('cut')
- cut_subparsers = cut_parser.add_subparsers(title='item', help='item to cut', unloadable=True)
+ cut_subparsers = cut_parser.add_subparsers(title='item', help='item to cut')
@with_argparser(cut_parser)
def do_cut(self, ns: argparse.Namespace):