diff --git a/src/statd/python/cli_pretty/cli_pretty.py b/src/statd/python/cli_pretty/cli_pretty.py index 5e65d4da..ffd381a4 100755 --- a/src/statd/python/cli_pretty/cli_pretty.py +++ b/src/statd/python/cli_pretty/cli_pretty.py @@ -568,9 +568,9 @@ class Decore(): def signal_to_status(signal): if signal >= -50: status = Decore.bright_green("excellent") - elif signal <= -65: + elif signal >= -60: status = Decore.green("good") - elif signal <= -50: + elif signal >= -70: status = Decore.yellow("poor") else: status = Decore.red("bad")