diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-04-09 00:08:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 00:08:03 -0400 |
commit | 22d61a87386c73f3ea8686402ce8327346b58376 (patch) | |
tree | dfe183a82dd568ec4c7710405e28c8081a754a2a | |
parent | 91c1e55256252dcc025acbd11653570a370ea4c6 (diff) | |
parent | 030f4ec919e7dc2645b1c0de9190d936c25fdb90 (diff) | |
download | cmd2-git-22d61a87386c73f3ea8686402ce8327346b58376.tar.gz |
Merge pull request #911 from python-cmd2/fix_docs
The continuation_prompt attribute was declared twice in cmd.rst
-rw-r--r-- | cmd2/cmd2.py | 1 | ||||
-rw-r--r-- | docs/api/cmd.rst | 6 |
2 files changed, 1 insertions, 6 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index fdc7a2d8..a8661e3c 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # coding=utf-8 """Variant on standard library's cmd with extra features. diff --git a/docs/api/cmd.rst b/docs/api/cmd.rst index 4124912a..6fdfbf27 100644 --- a/docs/api/cmd.rst +++ b/docs/api/cmd.rst @@ -6,11 +6,6 @@ cmd2.Cmd .. automethod:: __init__ - .. attribute:: continuation_prompt - - Use as prompt for multiline commands on the 2nd+ line of input. - Default: ``>``. - .. attribute:: default_error The error message displayed when a non-existent command is run. @@ -31,6 +26,7 @@ cmd2.Cmd The prompt issued to solicit input for the 2nd and subsequent lines of a :ref:`multiline command <features/multiline_commands:Multiline Commands>` + Default: ``>``. .. attribute:: echo |