summaryrefslogtreecommitdiffstats
path: root/python
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>2011-12-14 12:07:47 +0000
commit3c9dfd1e95fae5c31df1fbcb6bdec2982a69a004 (patch)
tree439546dddc9c6ae56b42fe86eb26eeb95077dfdd /python
parent0ef30bbb316b50beba511a5eb4bd7174671fa1ca (diff)
downloadlibguestfs-3c9dfd1e95fae5c31df1fbcb6bdec2982a69a004.tar.gz
libguestfs-3c9dfd1e95fae5c31df1fbcb6bdec2982a69a004.tar.xz
libguestfs-3c9dfd1e95fae5c31df1fbcb6bdec2982a69a004.zip
python: Missing () in guestfs-python(1) examples.
Diffstat (limited to 'python')
-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