From 59cc96c8823c956c5ecf89cd24826c4769aa460b Mon Sep 17 00:00:00 2001
From: Fabrice Le Goff <fabrice.le.goff@cern.ch>
Date: Mon, 28 Aug 2023 09:23:55 +0200
Subject: [PATCH] fix previous commit

---
 Script/cs/Threads/DeleteThread.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Script/cs/Threads/DeleteThread.py b/Script/cs/Threads/DeleteThread.py
index 5ba965e..8d3a3df 100644
--- a/Script/cs/Threads/DeleteThread.py
+++ b/Script/cs/Threads/DeleteThread.py
@@ -261,7 +261,7 @@ class DeleteThread(threading.Thread):
                 continue
 
             if stats.f_bsize == 0 or stats.f_blocks == 0:
-                self.logger.error('statvfs error on %s: stats=', mountpoint, str(stats))
+                self.logger.error('statvfs error on %s: stats=%s', mountpoint, str(stats))
                 continue
 
             fs_usages[mountpoint] = 100. * (1 -
-- 
GitLab