diff options
author | Amitay Isaacs <amitay@gmail.com> | 2011-07-20 14:50:05 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-07-28 15:20:52 +1000 |
commit | 2625199d80bb1280a939ae51a0e835b07d867218 (patch) | |
tree | 602b46b2eae95a50e6684d0bc5ddcb8e99057dc5 /source4/auth/gensec | |
parent | 6a12f7d66e7edeee020483cf3a7eecebb0ea4770 (diff) | |
download | samba-2625199d80bb1280a939ae51a0e835b07d867218.tar.gz samba-2625199d80bb1280a939ae51a0e835b07d867218.tar.bz2 samba-2625199d80bb1280a939ae51a0e835b07d867218.zip |
s4auth: Fix the object name for Py_Security
Use the object names as <modulename>.<objectname> to correctly generate the
object hierarchy in pydoc.
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/auth/gensec')
-rw-r--r-- | source4/auth/gensec/pygensec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/gensec/pygensec.c b/source4/auth/gensec/pygensec.c index 503974aaa3..102836533c 100644 --- a/source4/auth/gensec/pygensec.c +++ b/source4/auth/gensec/pygensec.c @@ -498,7 +498,7 @@ static PyMethodDef py_gensec_security_methods[] = { }; static PyTypeObject Py_Security = { - .tp_name = "Security", + .tp_name = "gensec.Security", .tp_flags = Py_TPFLAGS_DEFAULT, .tp_methods = py_gensec_security_methods, .tp_basicsize = sizeof(py_talloc_Object), |