summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-07 15:39:29 (GMT)
committerGuido van Rossum <guido@python.org>1995-02-07 15:39:29 (GMT)
commitd1b3481d69fd679770f6a8a28d877de235e27b3b (patch)
treec9b8f38387a9a0b6921148cddd7482f83c650633 /Modules/posixmodule.c
parent03e8ffa34587f609ea05e54f93d60b5116bdea54 (diff)
downloadcpython-d1b3481d69fd679770f6a8a28d877de235e27b3b.zip
cpython-d1b3481d69fd679770f6a8a28d877de235e27b3b.tar.gz
cpython-d1b3481d69fd679770f6a8a28d877de235e27b3b.tar.bz2
correct typo in utime stub
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 7f20a8f..0e4331b 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -562,7 +562,7 @@ posix_utime(self, args)
if (!getargs(args, "(s(ll))", &path, &atime, &mtime))
return NULL;
ATIME = atime;
- MTIME = utime;
+ MTIME = mtime;
BGN_SAVE
res = utime(path, UTIME_ARG);
END_SAVE