From 2ce9e08fac637cb6a19e5244027b118dbed708c2 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Thu, 23 Feb 2006 11:26:17 +0000 Subject: * src/libvirt.c: fixing a bug before the release of 0.0.5 * python/generator.py python/libvir.c python/libvirt-python-api.xml: also fixing the binding for getting a domain UUID * python/tests/Makefile.am python/tests/uuid.py: added a test for the new UUID API Daniel --- generator.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'generator.py') diff --git a/generator.py b/generator.py index c336f61..d9fa809 100755 --- a/generator.py +++ b/generator.py @@ -203,7 +203,9 @@ def enum(type, name, value): ####################################################################### functions_failed = [] -functions_skipped = [] +functions_skipped = [ + "virConnectListDomains" , "virDomainGetUUID" +] skipped_modules = { } @@ -259,6 +261,7 @@ foreign_encoding_args = ( skip_impl = ( 'virConnectListDomainsID', 'virDomainGetInfo', + 'virDomainGetUUID', ) def skip_function(name): @@ -568,6 +571,8 @@ def nameFixup(name, classe, type, file): func = name if func == "iD": func = "ID" + if func == "uUID": + func = "UUID" if func == "oSType": func = "OSType" if func == "xMLDesc": -- cgit