Fix Cancellable.raise_if_cancelled()

This commit is contained in:
Ole André Vadla Ravnås
2019-09-03 01:39:49 +02:00
parent 698ab16a88
commit 03a85fea8e
+1 -1
View File
@@ -3320,7 +3320,7 @@ PyCancellable_raise_if_cancelled (PyCancellable * self)
g_cancellable_set_error_if_cancelled (PY_GOBJECT_HANDLE (self), &error);
if (error != NULL)
PyFrida_raise (error);
return PyFrida_raise (error);
Py_RETURN_NONE;
}