From fc767e207468783652575b3b1be752b2a3074720 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 15 Dec 2021 06:48:30 -0500 Subject: [PATCH] Agent: Add missing "f" to f-string Co-authored-by: Shreya Malviya --- monkey/infection_monkey/master/propagator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/infection_monkey/master/propagator.py b/monkey/infection_monkey/master/propagator.py index ef3bf92ea..9d31b94b4 100644 --- a/monkey/infection_monkey/master/propagator.py +++ b/monkey/infection_monkey/master/propagator.py @@ -137,7 +137,7 @@ class Propagator: self, exploiter_name: str, host: VictimHost, result: ExploiterResultData ): if result.success: - logger.info("Successfully propagated to {host} using {exploiter_name}") + logger.info(f"Successfully propagated to {host} using {exploiter_name}") else: logger.info( f"Failed to propagate to {host} using {exploiter_name}: {result.error_message}"