[widgets] Pass through some information to the underlying module object

For determining status, critical/warning state, etc. simply let the
widget pass through a call to the underlying object.
This commit is contained in:
Tobias Witek 2016-11-05 12:14:33 +01:00
parent 2f0cc30c38
commit 73d62d7ded
2 changed files with 8 additions and 12 deletions

View file

@ -33,7 +33,7 @@ class Module(bumblebee.module.Module):
def widgets(self):
return [
bumblebee.output.Widget(
bumblebee.output.Widget(self,
datetime.datetime.now().strftime(self._fmt)
)
]