mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
* python/generator.py: patch from Tatsuro Enokura to fix
virNetworkDefine binding Daniel
This commit is contained in:
parent
d59c9d2fa8
commit
ccee35cbb0
@ -1,3 +1,8 @@
|
|||||||
|
Fri Mar 16 11:43:08 CET 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
|
* python/generator.py: patch from Tatsuro Enokura to fix
|
||||||
|
virNetworkDefine binding
|
||||||
|
|
||||||
Thu Mar 15 14:57:20 EST 2007 Daniel P Berrange <berrange@redhat.com>
|
Thu Mar 15 14:57:20 EST 2007 Daniel P Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* src/xen_internal.c: Fixed off by one error in extracting
|
* src/xen_internal.c: Fixed off by one error in extracting
|
||||||
|
@ -583,9 +583,12 @@ def nameFixup(name, classe, type, file):
|
|||||||
if name[0:l] == listname:
|
if name[0:l] == listname:
|
||||||
func = name[l:]
|
func = name[l:]
|
||||||
func = string.lower(func[0:1]) + func[1:]
|
func = string.lower(func[0:1]) + func[1:]
|
||||||
|
elif name[0:16] == "virNetworkDefine":
|
||||||
|
func = name[3:]
|
||||||
|
func = string.lower(func[0:1]) + func[1:]
|
||||||
elif name[0:16] == "virNetworkLookup":
|
elif name[0:16] == "virNetworkLookup":
|
||||||
func = name[3:]
|
func = name[3:]
|
||||||
func = string.lower(func[0:1]) + func[1:]
|
func = string.lower(func[0:1]) + func[1:]
|
||||||
elif name[0:12] == "virDomainGet":
|
elif name[0:12] == "virDomainGet":
|
||||||
func = name[12:]
|
func = name[12:]
|
||||||
func = string.lower(func[0:1]) + func[1:]
|
func = string.lower(func[0:1]) + func[1:]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user