From b599903eb294f14bc2ff3492102d860479ead872 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 29 May 2007 14:58:27 +0000 Subject: +Tue May 29 15:56:00 BST 2007 Richard W.M. Jones + + * python/generator.py, python/libvir.c, python/libvir.py: + Wrap the virGetVersion call as Python libvirt.getVersion. + + * src/libvirt.c: Change virGetVersion so that the driver name + is case insensitive. + --- generator.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'generator.py') diff --git a/generator.py b/generator.py index c3c79dc..3dc3212 100755 --- a/generator.py +++ b/generator.py @@ -287,6 +287,8 @@ def skip_function(name): return 1 if name == "vshRunConsole": return 1 + if name == "virGetVersion": + return 1 return 0 def print_function_wrapper(name, output, export, include): -- cgit