diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-07-14 12:42:24 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-07-14 12:42:24 +0100 |
commit | 7486fc6f43bdb22a989cc039e361afc4c0658d52 (patch) | |
tree | eebbe3e0bb3ec8c79a1a60961f1d7c2ea96a28e1 /python/examples/create_disk.py | |
parent | b48ae2eadf43315159f2174c8fd35b05ede14c0f (diff) | |
download | libguestfs-7486fc6f43bdb22a989cc039e361afc4c0658d52.tar.gz libguestfs-7486fc6f43bdb22a989cc039e361afc4c0658d52.tar.xz libguestfs-7486fc6f43bdb22a989cc039e361afc4c0658d52.zip |
generator: Rename 'add_drive_opts' API to 'add_drive'.
By using the once_had_no_optargs flag, this change is backwards
compatible for callers (except Haskell, PHP and GObject as discussed
in earlier commit).
Diffstat (limited to 'python/examples/create_disk.py')
-rw-r--r-- | python/examples/create_disk.py | 2 |
1 files changed, 1 insertions, 1 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 () |