From: Guido van Rossum Date: Tue, 7 Feb 1995 15:39:29 +0000 (+0000) Subject: correct typo in utime stub X-Git-Tag: v1.2b3~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d1b3481d69fd679770f6a8a28d877de235e27b3b;p=thirdparty%2FPython%2Fcpython.git correct typo in utime stub --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 7f20a8fc72b8..0e4331ba9a72 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