Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2011-12-14 23:22:15 (GMT)
committer Simon Schampijer <simon@schampijer.de>2011-12-15 01:54:45 (GMT)
commit4e0f1e8125444fb001c39a6748dfae87815717c4 (patch)
treeedada104b3fca282ed9e49cebda93d0ea3f703d4
parent3962517a5826fa6c25caaafb0d67533d94105b35 (diff)
SugarExt: drop pygobject2 initialisation
Now that we avoid linking with pygtk2/pygobject2, we need to remove this initialisation call so that the module can be loaded at runtime.
-rw-r--r--src/sugar3/_sugarbaseextmodule.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sugar3/_sugarbaseextmodule.c b/src/sugar3/_sugarbaseextmodule.c
index ebc1310..57fb139 100644
--- a/src/sugar3/_sugarbaseextmodule.c
+++ b/src/sugar3/_sugarbaseextmodule.c
@@ -31,8 +31,6 @@ init_sugarbaseext(void)
{
PyObject *m, *d;
- init_pygobject ();
-
m = Py_InitModule ("_sugarbaseext", py_sugarbaseext_functions);
d = PyModule_GetDict (m);