[modules] Re-enable spacer

This commit is contained in:
Tobias Witek 2016-11-05 13:53:08 +01:00
parent fb466bfd91
commit 9f9b27ad7a

View file

@ -11,10 +11,10 @@ def description():
return "Draws an empty field."
class Module(bumblebee.module.Module):
def __init__(self, output, args):
super(Module, self).__init__(args)
def __init__(self, output, config):
super(Module, self).__init__(output, config)
def data(self):
return ""
def widgets(self):
return bumblebee.output.Widget(self, "")
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4