summaryrefslogtreecommitdiffstats
path: root/python/guestfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/guestfs.py')
-rw-r--r--python/guestfs.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py
index a75148e5..dd9fa58c 100644
--- a/python/guestfs.py
+++ b/python/guestfs.py
@@ -1599,3 +1599,8 @@ class GuestFS:
"""
return libguestfsmod.e2fsck_f (self._o, device)
+ def sleep (self, secs):
+ u"""Sleep for "secs" seconds.
+ """
+ return libguestfsmod.sleep (self._o, secs)
+