diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-20 16:35:17 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-09-20 16:35:17 -0400 |
commit | 1a34f350f7846ba1ed1397f862a2cba4fa7272b0 (patch) | |
tree | b380455d71173bee93112397bb1e40aa2ed681e0 /cmd2/__init__.py | |
parent | 1176c0cc99975044d2fcec88b3f0903b8453194f (diff) | |
download | cmd2-git-1a34f350f7846ba1ed1397f862a2cba4fa7272b0.tar.gz |
Added CompletionError exception class
Diffstat (limited to 'cmd2/__init__.py')
-rw-r--r-- | cmd2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/__init__.py b/cmd2/__init__.py index 2653051a..c496a4f7 100644 --- a/cmd2/__init__.py +++ b/cmd2/__init__.py @@ -11,7 +11,7 @@ except DistributionNotFound: pass from .ansi import style -from .argparse_custom import Cmd2ArgumentParser, CompletionItem +from .argparse_custom import Cmd2ArgumentParser, CompletionError, CompletionItem from .cmd2 import Cmd, Statement, EmptyStatement, categorize from .cmd2 import with_argument_list, with_argparser, with_argparser_and_unknown_args, with_category from .constants import DEFAULT_SHORTCUTS |