summaryrefslogtreecommitdiff
path: root/morphlib/git.py
diff options
context:
space:
mode:
authorRichard Dale <richard.dale@codethink.co.uk>2013-06-25 09:26:28 +0100
committerRichard Dale <richard.dale@codethink.co.uk>2013-06-25 09:26:28 +0100
commite15e84e3cab086a8a2301c6c16e34e5a8e07c368 (patch)
tree99a2d9030d35b94a51ad4eda6c2eb7e147de2f5f /morphlib/git.py
parent155e5025278d106f3700fa8dffffb4c279dcded0 (diff)
downloadmorph-e15e84e3cab086a8a2301c6c16e34e5a8e07c368.tar.gz
Don't show git config messages for 'morph branch' in verbose mode
Diffstat (limited to 'morphlib/git.py')
-rw-r--r--morphlib/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index 9cdd0a84..3b9c4240 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -214,7 +214,7 @@ def check_config_set(runcmd, keys, cwd='.'):
found = {}
for key in keys:
try:
- value = runcmd(['git', 'config', key], cwd=cwd).strip()
+ value = runcmd(['git', 'config', key], cwd=cwd, print_command=False).strip()
found[key] = value
except cliapp.AppException:
missing.append(key)