mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-14 01:02:59 -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:
|
else:
|
||||||
verify_msg = ""
|
verify_msg = ""
|
||||||
if response is not None and response.status_code >= 400 and response.status_code < 500:
|
if response is not None and 400 <= response.status_code < 500:
|
||||||
verify_msg = " Verify you notification agent settings are correct."
|
verify_msg = " Verify your notification agent settings are correct."
|
||||||
|
|
||||||
logger.error("Tautulli Notifiers :: {name} notification failed.{msg}".format(msg=verify_msg, name=self.NAME))
|
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