summaryrefslogtreecommitdiff
path: root/cmd2.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-08-20 06:22:58 -0700
committerGitHub <noreply@github.com>2017-08-20 06:22:58 -0700
commiteae9157b711f333bb2895ca2b92019d7463bca8b (patch)
treef3cc2d2baaba434af5735a5bde12e40ae85fb152 /cmd2.py
parent499fdd614f782de085054e2e50d926a0f0adb71f (diff)
parent41da03c106ce6d92a45952e2ec4850429b3a3155 (diff)
downloadcmd2-git-eae9157b711f333bb2895ca2b92019d7463bca8b.tar.gz
Merge pull request #214 from python-cmd2/change_default
feedback_to_output now defaults to False
Diffstat (limited to 'cmd2.py')
-rwxr-xr-xcmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2.py b/cmd2.py
index 67f6c9bb..ebbbf46e 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -470,7 +470,7 @@ class Cmd(cmd.Cmd):
for editor in ['vim', 'vi', 'emacs', 'nano', 'pico', 'gedit', 'kate', 'subl', 'geany', 'atom']:
if _which(editor):
break
- feedback_to_output = True # Do include nonessentials in >, | output
+ feedback_to_output = False # Do not include nonessentials in >, | output by default (things like timing)
locals_in_py = True
quiet = False # Do not suppress nonessential output
timing = False # Prints elapsed time for each command