From daa67edf90d8776dcd734aa22b6b73795440866c Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Tue, 15 Mar 2022 20:20:16 +0100 Subject: [PATCH] Fix typo in log message. Fixes #1432 --- nf_core/modules/modules_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nf_core/modules/modules_command.py b/nf_core/modules/modules_command.py index dbfff111c..a60291fcf 100644 --- a/nf_core/modules/modules_command.py +++ b/nf_core/modules/modules_command.py @@ -207,7 +207,7 @@ def modules_json_up_to_date(self): log.info(f"Recomputing commit SHA for module {format_missing[0]} which was missing from 'modules.json'") else: log.info( - f"Recomputing commit SHAs for modules which which were were missing from 'modules.json': {', '.join(format_missing)}" + f"Recomputing commit SHAs for modules which were missing from 'modules.json': {', '.join(format_missing)}" ) failed_to_find_commit_sha = [] for repo, modules in missing_from_modules_json.items():