mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-13 16:52:58 -07:00
Fix typo in notifier error log message
This commit is contained in:
parent
9598247a0d
commit
dd2f12fa8e
1 changed files with 2 additions and 2 deletions
|
@ -854,8 +854,8 @@ class Notifier(object):
|
|||
|
||||
else:
|
||||
verify_msg = ""
|
||||
if response is not None and response.status_code >= 400 and response.status_code < 500:
|
||||
verify_msg = " Verify you notification agent settings are correct."
|
||||
if response is not None and 400 <= response.status_code < 500:
|
||||
verify_msg = " Verify your notification agent settings are correct."
|
||||
|
||||
logger.error("Tautulli Notifiers :: {name} notification failed.{msg}".format(msg=verify_msg, name=self.NAME))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue