Agent: Add missing "f" to f-string

Co-authored-by: Shreya Malviya <shreya.malviya@gmail.com>
This commit is contained in:
Mike Salvatore 2021-12-15 06:48:30 -05:00 committed by GitHub
parent 4b3984dbd7
commit fc767e2074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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}"