Improve the error message to specifically refer to byte string for the benefit of python 3

This commit is contained in:
William Brown 2016-06-01 13:21:19 +10:00
parent 74d509e617
commit df5daf0f9f
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ Tuple_to_LDAPMod( PyObject* tup, int no_op )
goto error; goto error;
if (!PyBytes_Check(item)) { if (!PyBytes_Check(item)) {
PyErr_SetObject( PyExc_TypeError, Py_BuildValue( "sO", PyErr_SetObject( PyExc_TypeError, Py_BuildValue( "sO",
"expected a string in the list", item)); "expected a byte string in the list", item));
Py_DECREF(item); Py_DECREF(item);
goto error; goto error;
} }