From 863168467f14e33407c4bf9c7f790bcd4911aea3 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 2 Aug 2012 17:21:47 +0100 Subject: examples: Use add_drive_opts function in examples. In libguestfs 1.20, you will be able to use 'add_drive' instead of 'add_drive_opts' (except in the C bindings). However until libguestfs 1.20 is the minimum stable version people will still be using old versions where you have to use 'add_drive_opts'. This makes the examples confusing. Therefore continue to use 'add_drive_opts' in the examples for now. --- python/examples/create_disk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/examples/create_disk.py') diff --git a/python/examples/create_disk.py b/python/examples/create_disk.py index a854c23f..86f50427 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 (output, format = "raw", readonly = 0) +g.add_drive_opts (output, format = "raw", readonly = 0) # Run the libguestfs back-end. g.launch () -- cgit