diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-07-30 23:32:19 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-07-30 23:32:19 -0700 |
commit | 38c23a83dabebe5b4052ac3694cbffac4f95ac34 (patch) | |
tree | 37a0bab50244671f78b011a2b65e7bd6ec527a64 /cmd2 | |
parent | f26fde65d6761a1dda49c26097bdd13242a30f72 (diff) | |
download | cmd2-git-38c23a83dabebe5b4052ac3694cbffac4f95ac34.tar.gz |
Fix Sphinx warning in preparse docstring
Diffstat (limited to 'cmd2')
-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 7dffa4f8..d34e7161 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -1652,8 +1652,8 @@ class Cmd(cmd.Cmd): If you want a reliable pre parsing hook method, register a postparsing hook, modify the user input, and then reparse it. - :param raw: raw command line input :return: potentially modified raw - command line input + :param raw: raw command line input :return: potentially modified raw command line input + :return: a potentially modified version of the raw input string """ return raw |