summaryrefslogtreecommitdiff
path: root/src/python.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/python.cc')
-rw-r--r--src/python.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/python.cc b/src/python.cc
index 2c2f9ae3..0d5c90cb 100644
--- a/src/python.cc
+++ b/src/python.cc
@@ -19,6 +19,7 @@ static PyObject *shit(PyObject *self, PyObject *args)
printf("SHIT CALLED!@!\n");
+ Py_INCREF(Py_None);
return Py_None;
}
@@ -36,7 +37,7 @@ static PyMethodDef OBMethods[] = {
void initopenbox()
{
- PyClient_Type.ob_type = &PyType_Type;
+ OBClient_Type.ob_type = &PyType_Type;
Py_InitModule("openbox", OBMethods);
}