diff options
Diffstat (limited to 'python/guestfs.py')
-rw-r--r-- | python/guestfs.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py index d4cd46d9..6cf7e19e 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -210,3 +210,9 @@ class GuestFS: def file (self, path): return libguestfsmod.file (self._o, path) + def command (self, arguments): + return libguestfsmod.command (self._o, arguments) + + def command_lines (self, arguments): + return libguestfsmod.command_lines (self._o, arguments) + |