From de184aacc7e101c74d5b23ba8ce788f0c5ede872 Mon Sep 17 00:00:00 2001 From: Paul Nilsson Date: Mon, 16 Dec 2024 10:05:01 +0100 Subject: [PATCH] Added missing f --- pilot/api/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/api/data.py b/pilot/api/data.py index 61600cc2..7f734a66 100644 --- a/pilot/api/data.py +++ b/pilot/api/data.py @@ -1057,7 +1057,7 @@ def check_availablespace(self, files: list): else: if disk_space: available_space = convert_mb_to_b(disk_space) - self.logger.info("locally available space: {available_space} B") + self.logger.info(f"locally available space: {available_space} B") # are we within the limit? if totalsize > available_space: