From e7f736e11cd130b8e09e293629a82e8b118352a0 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 29 Jun 2023 13:02:47 -0600 Subject: [PATCH] contextutil: Remove leftover print statement Looks like this was missed during PR submission/review in 8f8d05852 Signed-off-by: Zack Cerza --- teuthology/contextutil.py | 1 - 1 file changed, 1 deletion(-) diff --git a/teuthology/contextutil.py b/teuthology/contextutil.py index 4ddb82597..dd6d2d68a 100644 --- a/teuthology/contextutil.py +++ b/teuthology/contextutil.py @@ -139,7 +139,6 @@ class safe_while(object): if self.timeout > 0: self.sleep_current = min(self.timeout - self.total_seconds, self.sleep_current) self.total_seconds += self.sleep_current - print(self.total_seconds, self.sleep_current) self.sleeper(self.sleep_current) return True -- 2.47.3