fixed typo

full stop should be outside of the quoted IP address
This commit is contained in:
Andreas Brett 2023-06-30 15:11:14 +02:00 committed by GitHub
parent 7a464d8a6e
commit 67788a1b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,9 +24,9 @@ def handle_failed_login(sender, credentials, request, **kwargs):
else:
if client_ip.is_global:
# We got the client's IP address
log_output += f" from IP `{client_ip}.`"
log_output += f" from IP `{client_ip}`."
else:
# The client's IP address is private
log_output += f" from private IP `{client_ip}.`"
log_output += f" from private IP `{client_ip}`."
logger.info(log_output)