summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-12-14 12:07:31 +0000
committerRichard W.M. Jones <rjones@redhat.com>2012-01-10 15:35:05 +0000
commit25627b08238c588dde26b8278e4737570e6bf6ff (patch)
treeee1de154f6e7407acc2a3af8d966736c9e994c34
parent2b1da45749beb953f4c9b17cdc0b1cedd5961d08 (diff)
downloadlibguestfs-25627b08238c588dde26b8278e4737570e6bf6ff.tar.gz
libguestfs-25627b08238c588dde26b8278e4737570e6bf6ff.tar.xz
libguestfs-25627b08238c588dde26b8278e4737570e6bf6ff.zip
python: Missing () in guestfs-python(1) examples.
(cherry picked from commit 3c9dfd1e95fae5c31df1fbcb6bdec2982a69a004)
-rw-r--r--python/examples/guestfs-python.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/guestfs-python.pod b/python/examples/guestfs-python.pod
index cc87ef45..e4406f55 100644
--- a/python/examples/guestfs-python.pod
+++ b/python/examples/guestfs-python.pod
@@ -9,7 +9,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.launch
+ g.launch ()
=head1 DESCRIPTION