diff --git a/docs/examples/python/domstart.py b/docs/examples/python/domstart.py index 64434c414f6d29179066c2e02c25595814082b9f..52fb79e8406bc21a5caa006d7113e3def99dcc44 100755 --- a/docs/examples/python/domstart.py +++ b/docs/examples/python/domstart.py @@ -32,7 +32,7 @@ if len(sys.argv) != 2: (name, xmldesc) = read_domain(sys.argv[1]) -conn = libvirt.openReadOnly(None) +conn = libvirt.open(None) if conn == None: print 'Failed to open connection to the hypervisor' sys.exit(1) diff --git a/python/tests/create.py b/python/tests/create.py index 0da89a91474bfb7da317a5a27ad03a994c0127ec..d2c434eb65d63f3e4aadd40749798adc47def941 100755 --- a/python/tests/create.py +++ b/python/tests/create.py @@ -52,7 +52,7 @@ else: initrdU = "" + initrdU + "" -conn = libvirt.openReadOnly(None) +conn = libvirt.open(None) if conn == None: print 'Failed to open connection to the hypervisor' sys.exit(1)