diff options
author | Sigmund Vik <sigmund_vik@yahoo.com> | 2012-03-20 14:46:21 +0100 |
---|---|---|
committer | Sigmund Vik <sigmund_vik@yahoo.com> | 2012-03-20 14:46:21 +0100 |
commit | cba66bcb2ae87140d43b85c64a5a8f14fb9fab8a (patch) | |
tree | 420c3741a177e66677c00df15dd926d41e779ccd /tests/python | |
parent | f829735cc3e20e5d2165a020e87c4128d2ed9792 (diff) |
One more Windows fix.
This file was missing in previous commit.
Diffstat (limited to 'tests/python')
-rw-r--r-- | tests/python/ccproxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/ccproxy.py b/tests/python/ccproxy.py index 853b30f4..82750096 100644 --- a/tests/python/ccproxy.py +++ b/tests/python/ccproxy.py @@ -85,4 +85,4 @@ with open('ccproxy.log', 'a') as f: print "Running:", call, newargs -os.execvp(call, [call] + newargs) +subprocess.call([call] + newargs) |