summaryrefslogtreecommitdiffstats
path: root/pycore.c
diff options
context:
space:
mode:
authorChristopher Davis <loafier@gmail.com>2006-07-03 06:00:18 +0000
committerChristopher Davis <loafier@gmail.com>2006-07-03 06:00:18 +0000
commit34cdeaae9369af5dce3ce3a4a7756c033bc44cc5 (patch)
treee6d1c6e41fa734e0ac40ef5f3c68aff689631017 /pycore.c
parenta329fa4675852886ba2bbc9637cebcac882f1575 (diff)
downloadirssi-python-34cdeaae9369af5dce3ce3a4a7756c033bc44cc5.tar.gz
irssi-python-34cdeaae9369af5dce3ce3a4a7756c033bc44cc5.tar.xz
irssi-python-34cdeaae9369af5dce3ce3a4a7756c033bc44cc5.zip
worked on formats. working on themes now; testing adding functions and methods to objects
git-svn-id: http://svn.irssi.org/repos/irssi-python@4295 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'pycore.c')
-rw-r--r--pycore.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pycore.c b/pycore.c
index 6963076..cce5fb2 100644
--- a/pycore.c
+++ b/pycore.c
@@ -7,6 +7,7 @@
#include "pyloader.h"
#include "pymodule.h"
#include "pysignals.h"
+#include "pythemes.h"
#include "factory.h"
/*XXX: copy parse into utils */
@@ -118,7 +119,7 @@ void irssi_python_init(void)
Py_InitializeEx(0);
pysignals_init();
- if (!pyloader_init() || !pymodule_init() || !factory_init())
+ if (!pyloader_init() || !pymodule_init() || !factory_init() || !pythemes_init())
{
printtext(NULL, NULL, MSGLEVEL_CLIENTERROR, "Failed to load Python");
return;