From: Stefan Krah Date: Sat, 5 May 2012 20:37:05 +0000 (+0200) Subject: Fix typo in exception message. X-Git-Tag: v3.3.0a4~269 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b03f2ce45785190c6a8da271199ff724ba559d8;p=thirdparty%2FPython%2Fcpython.git Fix typo in exception message. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 76f440333de9..dc3302c9913d 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3711,7 +3711,7 @@ utime_read_time_arguments(utime_arguments *ua) if (times && (times != Py_None)) { if (!PyTuple_CheckExact(times) || (PyTuple_Size(times) != 2)) { PyErr_Format(PyExc_TypeError, - "%s: 'time' must be either" + "%s: 'times' must be either" " a tuple of two ints or None", ua->function_name); return_value = utime_times_conversion_failure;