summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-23 00:07:29 -0400
committerGitHub <noreply@github.com>2020-04-23 00:07:29 -0400
commit86c0df91bddf636178a95838145c46b6c9cc71a8 (patch)
tree6de53ed49b42e60d4ea0c516b94106086a614981 /cmd2/cmd2.py
parent6bfc6456dce9c2e87c24d0d3ba833323623b63bf (diff)
parent0ad71461348fa35021eca663eda88b18ab2563cb (diff)
downloadcmd2-git-86c0df91bddf636178a95838145c46b6c9cc71a8.tar.gz
Merge pull request #916 from python-cmd2/table_creator
Initial commit of table creation API
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index 34f53044..d14b4d99 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -1749,7 +1749,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:
@@ -1808,7 +1808,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