From e7f89d4d45fedca6d1df0c15a8bce79c82b76aa8 Mon Sep 17 00:00:00 2001
From: Daniil Baturin <daniil@vyos.io>
Date: Thu, 8 Jul 2021 08:45:59 -0500
Subject: T3663: fix the call to time.time() to match the new import scheme.

---
 python/vyos/util.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'python/vyos')

diff --git a/python/vyos/util.py b/python/vyos/util.py
index e8f1aabeb..d2758aff3 100644
--- a/python/vyos/util.py
+++ b/python/vyos/util.py
@@ -525,7 +525,7 @@ def wait_for_inotify(file_path, event_type=None, timeout=None, sleep_interval=0.
     i.add_watch(os.path.dirname(file_path))
 
     for event in i.event_gen(yield_nones=True):
-        if (timeout is not None) and ((time.time() - time_start) > timeout):
+        if (timeout is not None) and ((time() - time_start) > timeout):
             # If the function didn't return until this point,
             # the file failed to have been written to and closed within the timeout
             raise OSError("Waiting for file {} to be written has failed".format(file_path))
-- 
cgit v1.2.3