From b5e898fb5f82f09eea016477652c303aa928f0cc Mon Sep 17 00:00:00 2001 From: Andreas Grapentin Date: Mon, 28 Feb 2022 07:08:16 +0100 Subject: [PATCH] fixing inverted logical comparison --- py3status/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py3status/core.py b/py3status/core.py index 6839064f53..47e2e18ded 100644 --- a/py3status/core.py +++ b/py3status/core.py @@ -1050,7 +1050,7 @@ def run(self): "click_events": self.config["click_events"], "stop_signal": self.stop_signal or 0, } - if self.config["py3_config"]["general"].get("output_format") == 'tmux': + if self.config["py3_config"]["general"].get("output_format") != 'tmux': write(dumps(header)) write("\n[[]\n")