Fix error in exec_util.py.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1667 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2014-04-18 19:03:15 +00:00
parent da87cf449d
commit 7511f1e921
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ def exec_cmd(cmd, path):
err = ''
parts = cmd.split()
try:
process = Popen(cmd, cwd=path, stdout=PIPE, stderr=PIPE,
process = Popen(parts, cwd=path, stdout=PIPE, stderr=PIPE,
shell=(sys.platform == 'win32'))
out, err = process.communicate()
except IOError, (errno, strerror):