From 63713fc60c0fff8a6c6eabcba21191b347bfb8b4 Mon Sep 17 00:00:00 2001 From: Daniil Baturin 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(-) diff --git a/python/vyos/util.py b/python/vyos/util.py index 171ab397f..553e995df 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -522,7 +522,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