From: Andreas Brett Date: Fri, 30 Jun 2023 13:11:14 +0000 (+0200) Subject: fixed typo X-Git-Tag: v1.17.0~1^2~60^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3721%2Fhead;p=thirdparty%2Fpaperless-ngx.git fixed typo full stop should be outside of the quoted IP address --- diff --git a/src/paperless/signals.py b/src/paperless/signals.py index f6dccd7a6c..c3e69584d1 100644 --- a/src/paperless/signals.py +++ b/src/paperless/signals.py @@ -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)