Set up Sane error object as exception instead of string

String exceptions don't work anymore.
This commit is contained in:
Brian J. Crowell 2013-01-09 23:45:17 -06:00 committed by Brian Crowell
parent e84cc92036
commit fb2ccb15a7

View File

@ -1304,7 +1304,7 @@ init_sane(void)
/* Add some symbolic constants to the module */
PyObject *d = PyModule_GetDict(m);
ErrorObject = PyBytes_FromString("_sane.error");
ErrorObject = PyErr_NewException("_sane.error", NULL, NULL);
PyDict_SetItemString(d, "error", ErrorObject);
insint(d, "INFO_INEXACT", SANE_INFO_INEXACT);