Skip to content

Commit

Permalink
fixing inverted logical comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
oaken-source committed Mar 3, 2022
1 parent bf9bac6 commit b5e898f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py3status/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit b5e898f

Please sign in to comment.