diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-13 23:58:33 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-13 23:58:33 +0100 |
commit | adefe14e308a0f8cf73f9c60693a3dbbded157b9 (patch) | |
tree | cc1ecd798dd05c422ddcf99c1cdbef307aacb8fd /python/guestfs.py | |
parent | 42283403886da648bb239177369aa65c0a659255 (diff) | |
download | libguestfs-adefe14e308a0f8cf73f9c60693a3dbbded157b9.tar.gz libguestfs-adefe14e308a0f8cf73f9c60693a3dbbded157b9.tar.xz libguestfs-adefe14e308a0f8cf73f9c60693a3dbbded157b9.zip |
Generated files for file(1) command.
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) + |