From aed295b97e649ef7db4300cc400bc2bd9b1a03b0 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 4 Apr 2010 00:22:29 +0200 Subject: s4-python: Remove convenience macro PyErr_SetStringError. This macro assumed that all errors were runtime errors. --- source4/scripting/python/pyglue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/scripting') diff --git a/source4/scripting/python/pyglue.c b/source4/scripting/python/pyglue.c index 5fa02b367d..852231f681 100644 --- a/source4/scripting/python/pyglue.c +++ b/source4/scripting/python/pyglue.c @@ -513,7 +513,7 @@ static PyObject *py_samdb_ntds_invocation_id(PyObject *self, PyObject *args) guid = samdb_ntds_invocation_id(ldb); if (guid == NULL) { - PyErr_SetStringError("Failed to find NTDS invocation ID"); + PyErr_SetString(PyExc_RuntimeError, "Failed to find NTDS invocation ID"); talloc_free(mem_ctx); return NULL; } @@ -546,7 +546,7 @@ static PyObject *py_samdb_ntds_objectGUID(PyObject *self, PyObject *args) guid = samdb_ntds_objectGUID(ldb); if (guid == NULL) { - PyErr_SetStringError("Failed to find NTDS GUID"); + PyErr_SetString(PyExc_RuntimeError, "Failed to find NTDS GUID"); talloc_free(mem_ctx); return NULL; } -- cgit