mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-08-02 04:21:59 +03:00
Fix bugs in nwfilter binding APIs
We did not correctly mangle the API names in two cases, and we also forgot to specialize the lookup method name in the sanity test. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
@ -1127,7 +1127,10 @@ def nameFixup(name, classe, type, file):
|
||||
func = func[0:1].lower() + func[1:]
|
||||
elif name[0:27] == "virNWFilterBindingCreateXML":
|
||||
func = name[3:]
|
||||
func = func[0:1].lower() + func[1:]
|
||||
func = func[0:3].lower() + func[3:]
|
||||
elif name[0:24] == "virNWFilterBindingLookup":
|
||||
func = name[3:]
|
||||
func = func[0:3].lower() + func[3:]
|
||||
elif name[0:24] == "virNWFilterBindingDefine":
|
||||
func = name[3:]
|
||||
func = func[0:3].lower() + func[3:]
|
||||
|
@ -260,7 +260,7 @@ for name in sorted(basicklassmap):
|
||||
"LookupByUUIDString", "LookupByVolume" "LookupByName",
|
||||
"LookupByID", "LookupByName", "LookupByKey", "LookupByPath",
|
||||
"LookupByMACString", "LookupByUsage", "LookupByVolume",
|
||||
"LookupByTargetPath","LookupSCSIHostByWWN",
|
||||
"LookupByTargetPath","LookupSCSIHostByWWN", "LookupByPortDev",
|
||||
"Restore", "RestoreFlags",
|
||||
"SaveImageDefineXML", "SaveImageGetXMLDesc", "DefineXMLFlags"]:
|
||||
if klass != "virDomain":
|
||||
|
Reference in New Issue
Block a user