From 6b9f5b8d918edcb7ce51565bc3da60cb2ae69819 Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Sat, 17 Sep 2011 04:47:33 +0000 Subject: [PATCH] We want the name of the parent module, not the name of the module itself, for the pycode annotations. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69109 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- etgtools/sip_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etgtools/sip_generator.py b/etgtools/sip_generator.py index 4b7cff56..50cb2a87 100644 --- a/etgtools/sip_generator.py +++ b/etgtools/sip_generator.py @@ -87,7 +87,7 @@ from %s import * stream.write(divider) - self.module_name = module.name + self.module_name = module.module # C++ code to be written to the module's header if module.headerCode: stream.write("\n%ModuleHeaderCode\n")