From 68b6be11d6223df39c094d67e9fcaf1a52978890 Mon Sep 17 00:00:00 2001 From: TingPing Date: Mon, 8 Apr 2013 17:07:13 -0300 Subject: Add hexchat module to python interface --- plugins/python/python.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugins/python/python.c') diff --git a/plugins/python/python.c b/plugins/python/python.c index 239703a8..4077bfe4 100644 --- a/plugins/python/python.c +++ b/plugins/python/python.c @@ -1171,6 +1171,11 @@ Plugin_New(char *filename, PyMethodDef *xchat_methods, PyObject *xcoobj) hexchat_print(ph, "Can't create xchat module"); goto error; } + m = Py_InitModule("hexchat", xchat_methods); + if (m == NULL) { + hexchat_print(ph, "Can't create hexchat module"); + goto error; + } PyModule_AddIntConstant(m, "EAT_NONE", HEXCHAT_EAT_NONE); PyModule_AddIntConstant(m, "EAT_XCHAT", HEXCHAT_EAT_HEXCHAT); -- cgit 1.4.1