diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-05-05 22:37:05 +0200 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-05-05 22:37:05 +0200 |
commit | 6b03f2ce45785190c6a8da271199ff724ba559d8 (patch) | |
tree | 0a16420601d9e6dfeef7391f739e83e0b2451d40 | |
parent | cc238849df0cf839c8ca2f4c3e17a0a8ad7e8392 (diff) | |
download | cpython-git-6b03f2ce45785190c6a8da271199ff724ba559d8.tar.gz |
Fix typo in exception message.
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 76f440333d..dc3302c991 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; |