diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/pychrysa/pychrysa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/pychrysa/pychrysa.c b/plugins/pychrysa/pychrysa.c index 8f4db00..f2dbf0f 100644 --- a/plugins/pychrysa/pychrysa.c +++ b/plugins/pychrysa/pychrysa.c @@ -158,6 +158,9 @@ bool init_plugin(GPluginModule *plugin, GObject *ref) if (entry.d_name[0] == '.') continue; //if (strcmp(entry.d_name, "test") != 0) continue; + printf("NAME :: '%s'\n", entry.d_name); + if (strcmp(entry.d_name, "apkfiles") != 0) continue; + filename = strdup(entry.d_name); filename = stradd(filename, "."); filename = stradd(filename, "__init__"); @@ -282,7 +285,7 @@ PyMODINIT_FUNC initpychrysa(void) PyObject *module; init_pygobject(); - init_pygtk(); + //init_pygtk(); pychrysalide_init_quirks(); |