diff --git a/nxc/modules/veeam_dump.py b/nxc/modules/veeam_dump.py index 84ffbbf7..a44fa2e5 100644 --- a/nxc/modules/veeam_dump.py +++ b/nxc/modules/veeam_dump.py @@ -155,7 +155,7 @@ class NXCModule: for account in output_stripped: user, password = account.split(" ", 1) password = password.replace("WHITESPACE_ERROR", " ") - context.log.highlight(user + ":" + f"{password}") + context.log.highlight(f"{user}:{password}") if " " in password: context.log.fail(f'Password contains whitespaces! The password for user "{user}" is: "{password}"') except ValueError: