diff options
Diffstat (limited to 'python/guestfs.py')
-rw-r--r-- | python/guestfs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py index 2e0be5c5..95156fc2 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -225,3 +225,6 @@ class GuestFS: def statvfs (self, path): return libguestfsmod.statvfs (self._o, path) + def tune2fs_l (self, device): + return libguestfsmod.tune2fs_l (self._o, device) + |