From 91985873c444711865681a3211f74a72c47730ff Mon Sep 17 00:00:00 2001 From: Thanayut Seethongchuen Date: Thu, 30 May 2024 21:45:02 +0200 Subject: [PATCH] fix successful_publication log line (#8446) --- src/python/Publisher/PublisherMaster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/Publisher/PublisherMaster.py b/src/python/Publisher/PublisherMaster.py index 8b0d207a02..c5cd3b755e 100644 --- a/src/python/Publisher/PublisherMaster.py +++ b/src/python/Publisher/PublisherMaster.py @@ -525,7 +525,7 @@ def startSlave(self, task): # pylint: disable=too-many-branches, too-many-local logger.info('Taskname %s is OK. Nothing to do', taskname) else: msg = f"Taskname {taskname} is OK. Published {summary['publishedFiles']} " - msg += f"in {summary['publishedBlocks']} blocks." + msg += f"files in {summary['publishedBlocks']} blocks." if summary['nextIterFiles']: msg += f" {summary['nextIterFiles']} files left for next iteration." logger.info(msg)