summaryrefslogtreecommitdiff
path: root/source4/auth/credentials/pycredentials.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/auth/credentials/pycredentials.c')
-rw-r--r--source4/auth/credentials/pycredentials.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/credentials/pycredentials.c b/source4/auth/credentials/pycredentials.c
index 909d89786f..5083174ba1 100644
--- a/source4/auth/credentials/pycredentials.c
+++ b/source4/auth/credentials/pycredentials.c
@@ -420,7 +420,7 @@ static PyMethodDef py_creds_methods[] = {
};
PyTypeObject PyCredentials = {
- .tp_name = "Credentials",
+ .tp_name = "credentials.Credentials",
.tp_basicsize = sizeof(py_talloc_Object),
.tp_new = py_creds_new,
.tp_flags = Py_TPFLAGS_DEFAULT,
@@ -429,7 +429,7 @@ PyTypeObject PyCredentials = {
PyTypeObject PyCredentialCacheContainer = {
- .tp_name = "CredentialCacheContainer",
+ .tp_name = "credentials.CredentialCacheContainer",
.tp_basicsize = sizeof(py_talloc_Object),
.tp_flags = Py_TPFLAGS_DEFAULT,
};