From d46de7156795fa41646e3f8f31cc0e75a6febc8a Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Mon, 24 Nov 2008 19:28:12 +0000 Subject: Fix python bindings events code (David Lively) --- libvir.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libvir.py') diff --git a/libvir.py b/libvir.py index 86bf422..b90f795 100644 --- a/libvir.py +++ b/libvir.py @@ -126,11 +126,11 @@ def getVersion (name = None): # # Invoke an EventHandle callback # -def eventInvokeHandleCallback (fd, event, callback, opaque): +def eventInvokeHandleCallback (watch, fd, event, callback, opaque): """ Invoke the Event Impl Handle Callback in C """ - libvirtmod.virEventInvokeHandleCallback(fd, event, callback, opaque); + libvirtmod.virEventInvokeHandleCallback(watch, fd, event, callback, opaque); # # Invoke an EventTimeout callback -- cgit