From 2a243cfbe1938d324ac6445aa2917ec3db0d8c50 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 13 Apr 2009 20:13:06 +0100 Subject: guestfs -> GuestFS --- python/guestfs.py | 2 +- python/t/010-launch.py | 2 +- python/t/050-lvcreate.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'python') diff --git a/python/guestfs.py b/python/guestfs.py index fc57d8de..864b3619 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -20,7 +20,7 @@ import libguestfsmod -class guestfs: +class GuestFS: def __init__ (self): self._o = libguestfsmod.create () diff --git a/python/t/010-launch.py b/python/t/010-launch.py index 1cba3221..c1316d29 100644 --- a/python/t/010-launch.py +++ b/python/t/010-launch.py @@ -18,7 +18,7 @@ import os import guestfs -g = guestfs.guestfs() +g = guestfs.GuestFS() f = open ("test.img", "w") f.truncate (500 * 1024 * 1024) f.close () diff --git a/python/t/050-lvcreate.py b/python/t/050-lvcreate.py index 444cee90..8503023f 100644 --- a/python/t/050-lvcreate.py +++ b/python/t/050-lvcreate.py @@ -18,7 +18,7 @@ import os import guestfs -g = guestfs.guestfs() +g = guestfs.GuestFS() f = open ("test.img", "w") f.truncate (500 * 1024 * 1024) f.close () -- cgit