diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-22 00:32:55 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-22 00:32:55 -0400 |
commit | e1256ccb5a78d8cb3b4f2ab9904d80693b6959c9 (patch) | |
tree | 8af8f150e8c84bfd671e22b6bd988e96d6fc1f1c /cmd2/cmd2.py | |
parent | a6f04d8f8d999a1440a34307d3646a33b2b23d74 (diff) | |
download | cmd2-git-e1256ccb5a78d8cb3b4f2ab9904d80693b6959c9.tar.gz |
Updated docs
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index e0c28941..4db95678 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -1748,7 +1748,7 @@ class Cmd(cmd.Cmd): :param line: the line being parsed :return: the completed Statement :raises: Cmd2ShlexError if a shlex error occurs (e.g. No closing quotation) - EmptyStatement when the resulting Statement is blank + :raises: EmptyStatement when the resulting Statement is blank """ while True: try: @@ -1807,7 +1807,7 @@ class Cmd(cmd.Cmd): :param line: the line being parsed :return: parsed command line as a Statement :raises: Cmd2ShlexError if a shlex error occurs (e.g. No closing quotation) - EmptyStatement when the resulting Statement is blank + :raises: EmptyStatement when the resulting Statement is blank """ used_macros = [] orig_line = None |