From 48420deeceaeb5793d4e2616eec7ca2f67c545e0 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Thu, 31 Oct 2019 12:11:38 -0400 Subject: 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 --- examples/help_categories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') 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): -- cgit v1.2.1