summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 2a9937f..a640984 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -322,7 +322,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.