[libvirt] [PATCH] python: Adapt to virevent rename

Michal Privoznik mprivozn at redhat.com
Fri Dec 28 15:41:36 UTC 2012


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 <module>
    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'
---

Pushed under trivial rule.

 python/generator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/generator.py b/python/generator.py
index e9b9270..bae4edc 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,
-- 
1.8.0.2




More information about the libvir-list mailing list