correct typo in utime stub

This commit is contained in:
Guido van Rossum 1995-02-07 15:39:29 +00:00
parent 03e8ffa345
commit d1b3481d69

View file

@ -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