Fix typo in exception message.

This commit is contained in:
Stefan Krah 2012-05-05 22:37:05 +02:00
parent cc238849df
commit 6b03f2ce45
1 changed files with 1 additions and 1 deletions

View File

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