aboutsummaryrefslogtreecommitdiff
path: root/tests/python
diff options
context:
space:
mode:
authorSigmund Vik <sigmund_vik@yahoo.com>2012-03-20 14:46:21 +0100
committerSigmund Vik <sigmund_vik@yahoo.com>2012-03-20 14:46:21 +0100
commitcba66bcb2ae87140d43b85c64a5a8f14fb9fab8a (patch)
tree420c3741a177e66677c00df15dd926d41e779ccd /tests/python
parentf829735cc3e20e5d2165a020e87c4128d2ed9792 (diff)
One more Windows fix.
This file was missing in previous commit.
Diffstat (limited to 'tests/python')
-rw-r--r--tests/python/ccproxy.py2
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)