diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-10-31 12:11:38 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-10-31 12:11:38 -0400 |
commit | 48420deeceaeb5793d4e2616eec7ca2f67c545e0 (patch) | |
tree | 825d550028788c8fd95c6785fdb5ece7174dc5d2 /examples | |
parent | 245dc33730d2a27bc9744be7cf36f176f5a0c10a (diff) | |
download | cmd2-git-48420deeceaeb5793d4e2616eec7ca2f67c545e0.tar.gz |
Moving a bit of code around to shrink cmd2.py
This includes moving cmd2 decorators into a new file called decorators.py
Moved some constants from cmd2.py to constants.py
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/help_categories.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/help_categories.py b/examples/help_categories.py index 80f367fa..602bf441 100755 --- a/examples/help_categories.py +++ b/examples/help_categories.py @@ -7,7 +7,7 @@ A sample application for tagging categories on commands. import argparse import cmd2 -from cmd2.cmd2 import COMMAND_NAME +from cmd2 import COMMAND_NAME class HelpCategories(cmd2.Cmd): |