diff options
Diffstat (limited to 'python/examples')
-rw-r--r-- | python/examples/create_disk.py | 2 | ||||
-rw-r--r-- | python/examples/guestfs-python.pod | 2 | ||||
-rw-r--r-- | python/examples/inspect_vm.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/python/examples/create_disk.py b/python/examples/create_disk.py index 86f50427..a854c23f 100644 --- a/python/examples/create_disk.py +++ b/python/examples/create_disk.py @@ -16,7 +16,7 @@ f.close () g.set_trace (1) # Attach the disk image to libguestfs. -g.add_drive_opts (output, format = "raw", readonly = 0) +g.add_drive (output, format = "raw", readonly = 0) # Run the libguestfs back-end. g.launch () diff --git a/python/examples/guestfs-python.pod b/python/examples/guestfs-python.pod index e4406f55..59f60e57 100644 --- a/python/examples/guestfs-python.pod +++ b/python/examples/guestfs-python.pod @@ -8,7 +8,7 @@ guestfs-python - How to use libguestfs from Python import guestfs g = guestfs.GuestFS () - g.add_drive_opts ("disk.img", format="raw", readonly=1) + g.add_drive ("disk.img", format="raw", readonly=1) g.launch () =head1 DESCRIPTION diff --git a/python/examples/inspect_vm.py b/python/examples/inspect_vm.py index c491a2ce..816779cc 100644 --- a/python/examples/inspect_vm.py +++ b/python/examples/inspect_vm.py @@ -9,7 +9,7 @@ disk = sys.argv[1] g = guestfs.GuestFS () # Attach the disk image read-only to libguestfs. -g.add_drive_opts (disk, readonly=1) +g.add_drive (disk, readonly=1) # Run the libguestfs back-end. g.launch () |