From eb9460ad794f7223a70f2be9a10b3615a97cfa6f Mon Sep 17 00:00:00 2001 From: Jasper Seidel Date: Thu, 12 Jan 2017 15:26:27 +0100 Subject: [PATCH] Corrected output of pomodoro module. There was a stale comma left from a previous refactor, this caused the module to return output as a tuple, which ended up in the json as an array. This has the effect that modules after (left of) this module refuse to display in i3bar. --- i3pystatus/pomodoro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/pomodoro.py b/i3pystatus/pomodoro.py index c13d52b..6ea0692 100644 --- a/i3pystatus/pomodoro.py +++ b/i3pystatus/pomodoro.py @@ -83,7 +83,7 @@ class Pomodoro(IntervalModule): color = self.color_running if self.state == RUNNING else self.color_break text = self.format.format(**sdict) else: - text = 'Start pomodoro', + text = 'Start pomodoro' color = self.color_stopped self.output = {