An OSError is more appropriate I think.

This commit is contained in:
Virgil Dupras 2010-04-06 09:04:04 +02:00
parent 5aa4811725
commit fc511be6b2
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ static PyObject* trash_osx_send(PyObject *self, PyObject *args)
FSPathMakeRefWithOptions(utf8_chars, kFSPathMakeRefDoNotFollowLeafSymlink, &fp, NULL);
op_result = FSMoveObjectToTrashSync(&fp, NULL, kFSFileOperationDefaultOptions);
if (op_result != noErr) {
PyErr_SetString(PyExc_IOError, GetMacOSStatusCommentString(op_result));
PyErr_SetString(PyExc_OSError, GetMacOSStatusCommentString(op_result));
return NULL;
}
return Py_None;