summaryrefslogtreecommitdiff
path: root/src/python.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-10 08:32:35 +0000
committerDana Jansens <danakj@orodu.net>2003-01-10 08:32:35 +0000
commitd0c61ebfeae4d83d7945339e3ed22067cdba0397 (patch)
treed6c95361a986e4e2cb788e201240860f074669a0 /src/python.cc
parent26d95a52860277c118efd95fb251fee28b502d8c (diff)
dont need the otk initializer
Diffstat (limited to 'src/python.cc')
-rw-r--r--src/python.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/python.cc b/src/python.cc
index 719c667d..e995ea11 100644
--- a/src/python.cc
+++ b/src/python.cc
@@ -11,8 +11,6 @@
extern "C" {
// The initializer in openbox_wrap.cc
extern void init_openbox(void);
-// The initializer in otk_wrap.cc
-extern void init_otk(void);
}
namespace ob {
@@ -24,8 +22,7 @@ void python_init(char *argv0)
// start the python engine
Py_SetProgramName(argv0);
Py_Initialize();
- // initialize the C python modules
- init_otk();
+ // initialize the C python module
init_openbox();
// include the openbox directories for python scripts in the sys path
PyRun_SimpleString("import sys");