Skip to content

Commit

Permalink
Don't import site on initialization, as this mitigates the buildout 1…
Browse files Browse the repository at this point in the history
….5 way of setting sys.path
  • Loading branch information
janjaapdriessen committed Oct 6, 2010
1 parent 3c6d87c commit 5642c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/z3c/recipe/compattest/runner.py
Expand Up @@ -31,7 +31,7 @@ def __init__(self, script, args):
def start(self):
self.start = time.time()
self.process = subprocess.Popen(
[sys.executable, self.script, '--exit-with-status'] + self.args,
[sys.executable, '-S', self.script, '--exit-with-status'] + self.args,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
Expand Down

0 comments on commit 5642c1c

Please sign in to comment.