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 864b3619..d4cd46d9 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -207,3 +207,6 @@ class GuestFS: def lvm_remove_all (self): return libguestfsmod.lvm_remove_all (self._o) + def file (self, path): + return libguestfsmod.file (self._o, path) + |