Remove empty spaces.

This commit is contained in:
Vassil Vassilev 2014-09-28 16:53:55 +02:00 committed by sftnight
parent e2c78ae27e
commit ddbe9dda2c

View File

@ -52,7 +52,7 @@ def _convert_subprocess_cmd(cmd):
return cmd.split()
else:
return [cmd]
def exec_subprocess_call(cmd, cwd):
cmd = _convert_subprocess_cmd(cmd)
subprocess.check_call(cmd, cwd=cwd, shell=True,