summaryrefslogtreecommitdiff
path: root/docs/migrating/next_steps.rst
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-02-06 23:30:33 -0500
committerGitHub <noreply@github.com>2020-02-06 23:30:33 -0500
commit3c627af7c1e22bcd0cd0a49dee05fd6b626bccc5 (patch)
treeba04d09ce9d0df114890db8e31dd6cb6988f9d7b /docs/migrating/next_steps.rst
parentc7ac2e965d025806ce5baddfc718814e3e58d639 (diff)
parent90152df53478a00a3c64ba5ece160485408680dd (diff)
downloadcmd2-git-3c627af7c1e22bcd0cd0a49dee05fd6b626bccc5.tar.gz
Merge pull request #875 from python-cmd2/doc_streamline
Doc streamline
Diffstat (limited to 'docs/migrating/next_steps.rst')
-rw-r--r--docs/migrating/next_steps.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/migrating/next_steps.rst b/docs/migrating/next_steps.rst
index d95473ee..545e1c0a 100644
--- a/docs/migrating/next_steps.rst
+++ b/docs/migrating/next_steps.rst
@@ -51,8 +51,8 @@ Generating Output
-----------------
If your program generates output by printing directly to ``sys.stdout``, you
-should consider switching to :meth:`~cmd2.cmd2.Cmd.poutput`,
-:meth:`~cmd2.cmd2.Cmd.perror`, and :meth:`~cmd2.cmd2.Cmd.pfeedback`. These
+should consider switching to :meth:`~cmd2.Cmd.poutput`,
+:meth:`~cmd2.Cmd.perror`, and :meth:`~cmd2.Cmd.pfeedback`. These
methods work with several of the built in :ref:`features/settings:Settings` to
allow the user to view or suppress feedback (i.e. progress or status output).
They also properly handle ansi colored output according to user preference.