summaryrefslogtreecommitdiff
path: root/morphlib/git.py
diff options
context:
space:
mode:
authorRichard Dale <richard.dale@codethink.co.uk>2013-06-25 09:42:34 +0100
committerRichard Dale <richard.dale@codethink.co.uk>2013-06-25 09:42:34 +0100
commit6042be1f37c4d6e94ad292ad25e748aa73d68d93 (patch)
tree0a026ca0c9ece6a2eb6bf73ebf2062db2ed765af /morphlib/git.py
parente15e84e3cab086a8a2301c6c16e34e5a8e07c368 (diff)
downloadmorph-6042be1f37c4d6e94ad292ad25e748aa73d68d93.tar.gz
Fix lines overflowing the 80 character limit
Diffstat (limited to 'morphlib/git.py')
-rw-r--r--morphlib/git.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index 3b9c4240..88c6dae3 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -214,7 +214,8 @@ def check_config_set(runcmd, keys, cwd='.'):
found = {}
for key in keys:
try:
- value = runcmd(['git', 'config', key], cwd=cwd, print_command=False).strip()
+ value = runcmd(['git', 'config', key], cwd=cwd,
+ print_command=False).strip()
found[key] = value
except cliapp.AppException:
missing.append(key)