[modules] Re-enable spacer
This commit is contained in:
parent
fb466bfd91
commit
9f9b27ad7a
1 changed files with 4 additions and 4 deletions
|
@ -11,10 +11,10 @@ def description():
|
||||||
return "Draws an empty field."
|
return "Draws an empty field."
|
||||||
|
|
||||||
class Module(bumblebee.module.Module):
|
class Module(bumblebee.module.Module):
|
||||||
def __init__(self, output, args):
|
def __init__(self, output, config):
|
||||||
super(Module, self).__init__(args)
|
super(Module, self).__init__(output, config)
|
||||||
|
|
||||||
def data(self):
|
def widgets(self):
|
||||||
return ""
|
return bumblebee.output.Widget(self, "")
|
||||||
|
|
||||||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
||||||
|
|
Loading…
Reference in a new issue