1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Set path for plugins

This commit is contained in:
James Booth 2013-07-30 23:42:46 +01:00
parent 5cb28822eb
commit ece153cd08

View File

@ -48,6 +48,7 @@ api_init(void)
PyObject *pName, *pModule, *pProfInit, *pProfOnStart, *pArgs;
Py_Initialize();
PySys_SetPath("$PYTHONPATH:./plugins/");
Py_InitModule("prof", apiMethods);
pName = PyString_FromString("helloworld");
pModule = PyImport_Import(pName);
@ -58,7 +59,7 @@ api_init(void)
if (pProfInit && PyCallable_Check(pProfInit)) {
pArgs = Py_BuildValue("ss", PACKAGE_VERSION, PACKAGE_STATUS);
PyObject_CallObject(pProfInit, pArgs);
// Py_XDECREF(pArgs);
Py_XDECREF(pArgs);
}
Py_XDECREF(pProfInit);