summaryrefslogtreecommitdiff
path: root/dotbot/executor/commandrunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/executor/commandrunner.py')
-rw-r--r--dotbot/executor/commandrunner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotbot/executor/commandrunner.py b/dotbot/executor/commandrunner.py
index fd44e49..45d40f5 100644
--- a/dotbot/executor/commandrunner.py
+++ b/dotbot/executor/commandrunner.py
@@ -41,8 +41,8 @@ class CommandRunner(Executor):
self._log.lowinfo(cmd)
else:
self._log.lowinfo('%s [%s]' % (msg, cmd))
- ret = subprocess.call(cmd, shell = True, stdin = stdin, stdout = stdout,
- stderr = stderr, cwd = self._base_directory)
+ ret = subprocess.call(cmd, shell=True, stdin=stdin, stdout=stdout,
+ stderr=stderr, cwd=self._base_directory)
if ret != 0:
success = False
self._log.warning('Command [%s] failed' % cmd)