From 48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39 Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Sun, 31 Jan 2010 16:46:26 +0000 Subject: [PATCH] - Fix typo in os.execvp docstring. --- Lib/os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/os.py b/Lib/os.py index 12ebbcb517c..c612e17ecee 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -336,7 +336,7 @@ def execlpe(file, *args): execvpe(file, args[:-1], env) def execvp(file, args): - """execp(file, args) + """execvp(file, args) Execute the executable file (which is searched for along $PATH) with argument list args, replacing the current process.