Python plugin: Fix typo
authorHolger Berndt <hb@claws-mail.org>
Sat, 20 Jul 2013 10:41:12 +0000 (12:41 +0200)
committerHolger Berndt <hb@claws-mail.org>
Sat, 27 Jul 2013 14:50:08 +0000 (16:50 +0200)
src/plugins/python/clawsmailmodule.c

index c34283e909cb9a9988a036f3f758199b00e577e1..0efc52e8b767dcc87739f56de7685cbffad55d2b 100644 (file)
@@ -744,7 +744,7 @@ PyMODINIT_FUNC initclawsmail(void)
 
   /* add module member "compose_window" set to None */
   Py_INCREF(Py_None);
-  PyModule_AddObject(cm_module, "compose window", Py_None);
+  PyModule_AddObject(cm_module, "compose_window", Py_None);
 
   /* initialize classes */
   ok = ok && cmpy_add_node(cm_module);