From 4337c2b08754d2d36c37d240af9bc69cfcd06eb9 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Fri, 16 Jun 2017 11:22:08 +0200 Subject: [PATCH] [modules/todo] Make unit test pass Return value of full_text must be a string. --- bumblebee/modules/todo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee/modules/todo.py b/bumblebee/modules/todo.py index 12166c3..8bab920 100644 --- a/bumblebee/modules/todo.py +++ b/bumblebee/modules/todo.py @@ -21,7 +21,7 @@ class Module(bumblebee.engine.Module): def output(self, widget): self._todos = self.count_items() - return self._todos + return str(self._todos) def state(self, widgets):