From: Michal Privoznik Date: Fri, 28 Dec 2012 15:22:09 +0000 (+0100) Subject: python: Adapt to virevent rename X-Git-Tag: v1.0.2-rc1~315 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2d7e7c61a3b121cd78bf44e660e124aa5042867;p=thirdparty%2Flibvirt.git python: Adapt to virevent rename With our recent renames under src/util/* we forgot to adapt python wrapper code generator. This results in some methods being not exposed: $ python examples/domain-events/events-python/event-test.py Using uri:qemu:///system Traceback (most recent call last): File "examples/domain-events/events-python/event-test.py", line 585, in main() File "examples/domain-events/events-python/event-test.py", line 543, in main virEventLoopPureStart() File "examples/domain-events/events-python/event-test.py", line 416, in virEventLoopPureStart virEventLoopPureRegister() File "examples/domain-events/events-python/event-test.py", line 397, in virEventLoopPureRegister libvirt.virEventRegisterImpl(virEventAddHandleImpl, AttributeError: 'module' object has no attribute 'virEventRegisterImpl' --- diff --git a/python/generator.py b/python/generator.py index e9b92709f2..bae4edcc13 100755 --- a/python/generator.py +++ b/python/generator.py @@ -132,7 +132,7 @@ class docParser(xml.sax.handler.ContentHandler): if tag == 'function': if self.function != None: if (self.function_module == "libvirt" or - self.function_module == "event" or + self.function_module == "virevent" or self.function_module == "virterror"): function(self.function, self.function_descr, self.function_return, self.function_args,