summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 7f70f30..c7a3cc5 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -252,7 +252,7 @@ def _execvpe(file, args, env=None):
if not _notfound:
import tempfile
# Exec a file that is guaranteed not to exist
- try: execv(tempfile.mktemp(), ())
+ try: execv(tempfile.mktemp(), ('blah',))
except error, _notfound: pass
exc, arg = error, _notfound
for dir in PATH: