* docs/examples/python/domstart.py python/tests/create.py:
The two example were broken as they needed full-access connection
but only opened read-only connections
(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)
initrdU = "<initrd>" + initrdU + "</initrd>"
-conn = libvirt.openReadOnly(None)
+conn = libvirt.open(None)
if conn == None:
print 'Failed to open connection to the hypervisor'
sys.exit(1)