From 5acce2624a4e22451c144ab172d9e0a1b7d9302a Mon Sep 17 00:00:00 2001 From: Saugat Pachhai Date: Tue, 4 Aug 2020 08:31:46 +0545 Subject: [PATCH] Update updater.py --- dvc/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/updater.py b/dvc/updater.py index 4230a29515..b2fb79b6a2 100644 --- a/dvc/updater.py +++ b/dvc/updater.py @@ -34,7 +34,7 @@ def _is_outdated_file(self): ctime = os.path.getmtime(self.updater_file) outdated = time.time() - ctime >= self.TIMEOUT if outdated: - logger.debug(f"'{self.updater_file}' is outdated(") + logger.debug(f"'{self.updater_file}' is outdated") return outdated def _with_lock(self, func, action):