[modules/todo] Make unit test pass
Return value of full_text must be a string.
This commit is contained in:
parent
c27236cd82
commit
4337c2b087
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class Module(bumblebee.engine.Module):
|
||||||
|
|
||||||
def output(self, widget):
|
def output(self, widget):
|
||||||
self._todos = self.count_items()
|
self._todos = self.count_items()
|
||||||
return self._todos
|
return str(self._todos)
|
||||||
|
|
||||||
|
|
||||||
def state(self, widgets):
|
def state(self, widgets):
|
||||||
|
|
Loading…
Reference in a new issue