From 9078ad41fd0606135c477eb46457fa521097420d Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 9 Jun 2010 16:54:52 +0000 Subject: Binding python: call lasso_init() first in init_lasso() --- bindings/python/wrapper_bottom.c | 1 + 1 file changed, 1 insertion(+) (limited to 'bindings/python/wrapper_bottom.c') diff --git a/bindings/python/wrapper_bottom.c b/bindings/python/wrapper_bottom.c index a899188d..730c21b8 100644 --- a/bindings/python/wrapper_bottom.c +++ b/bindings/python/wrapper_bottom.c @@ -14,6 +14,7 @@ init_lasso(void) Py_INCREF(&PyGObjectPtrType); PyModule_AddObject(m, "PyGObjectPtr", (PyObject *)&PyGObjectPtrType); + lasso_init(); lasso_log_set_handler(G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION | G_LOG_LEVEL_MASK, lasso_python_log, NULL); } -- cgit