summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-10-31 12:11:38 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-10-31 12:11:38 -0400
commit48420deeceaeb5793d4e2616eec7ca2f67c545e0 (patch)
tree825d550028788c8fd95c6785fdb5ece7174dc5d2 /examples
parent245dc33730d2a27bc9744be7cf36f176f5a0c10a (diff)
downloadcmd2-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-xexamples/help_categories.py2
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):