From 6075276d1c1cc7042cc7a875d275c6055e8e9cb1 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 18 Apr 2014 19:03:44 +0000 Subject: [PATCH] Merge revision 1667 changes: - Fix error in exec_util.py. git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1916@1668 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tools/exec_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/exec_util.py b/tools/exec_util.py index c38f67577..2692ed284 100644 --- a/tools/exec_util.py +++ b/tools/exec_util.py @@ -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):