Co-Authored-By: hugovk <hugovk@users.noreply.github.com>
This commit is contained in:
Andrew Murray 2019-03-16 11:58:23 +02:00 committed by GitHub
parent 7477036230
commit e40e0093fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1016,7 +1016,7 @@ static PyObject*
cms_profile_getattr_pcs(CmsProfileObject* self, void* closure)
{
PyErr_WarnEx(PyExc_DeprecationWarning,
"cms is deprecated. Use padded connection_space instead.", 1);
"pcs is deprecated. Use padded connection_space instead.", 1);
return PyUnicode_DecodeFSDefault(findICmode(cmsGetPCS(self->profile)));
}