Update required modules list in README

This commit is contained in:
Frederic Junod 2018-03-14 08:35:51 +01:00
parent 52312b7331
commit 95fab517c6
2 changed files with 2 additions and 2 deletions

View file

@ -149,7 +149,7 @@ Modules and commandline utilities are only required for modules, the core itself
* psutil (for the modules 'cpu', 'memory', 'traffic') * psutil (for the modules 'cpu', 'memory', 'traffic')
* netifaces (for the modules 'nic', 'traffic') * netifaces (for the modules 'nic', 'traffic')
* requests (for the modules 'weather', 'github', 'getcrypto', 'stock') * requests (for the modules 'weather', 'github', 'getcrypto', 'stock', 'hipchat', 'currency')
* power (for the module 'battery') * power (for the module 'battery')
* dbus (for the module 'spotify') * dbus (for the module 'spotify')
* i3ipc (for the module 'title') * i3ipc (for the module 'title')

View file

@ -35,5 +35,5 @@ class Module(bumblebee.engine.Module):
self._pending_tasks_count = 'Error' self._pending_tasks_count = 'Error'
def output(self, _): def output(self, _):
"""Format the task counter to ouptut in bumblebee.""" """Format the task counter to output in bumblebee."""
return "{}".format(self._pending_tasks_count) return "{}".format(self._pending_tasks_count)