mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-06 06:45:05 +01:00
Merge pull request #3721 from andreasbrett/patch-1
fixed typo in signals.pay log output
This commit is contained in:
commit
feb4901620
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue