Merge pull request #235 from fredj/readme

Update required modules list in README
This commit is contained in:
tobi-wan-kenobi 2018-03-14 19:32:49 +01:00 committed by GitHub
commit 5865c69780
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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)