diff options
| author | Ultrabug <ultrabug@gentoo.org> | 2014-12-11 23:10:05 +0100 |
|---|---|---|
| committer | Ultrabug <ultrabug@gentoo.org> | 2014-12-11 23:10:05 +0100 |
| commit | 4d004ace301bb57c9e3bdf9e995ec397a44e0056 (patch) | |
| tree | ba9c98e1d8144a22395e1af34e1fb095fb1bdd51 | |
| parent | d885ebf6cb9129ee344d5524a5760a946693fff3 (diff) | |
modules variables normalization
| -rw-r--r-- | py3status/modules/weather_yahoo.py | 2 | ||||
| -rw-r--r-- | py3status/modules/whoami.py | 3 | ||||
| -rw-r--r-- | py3status/modules/window-title.py | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/py3status/modules/weather_yahoo.py b/py3status/modules/weather_yahoo.py index 09e1c72..ad0cecb 100644 --- a/py3status/modules/weather_yahoo.py +++ b/py3status/modules/weather_yahoo.py @@ -91,7 +91,7 @@ class Py3status: return icons[code] - def weather_yahoo(self, json, i3status_config): + def weather_yahoo(self, i3s_output_list, i3s_config): """ This method gets executed by py3status """ diff --git a/py3status/modules/whoami.py b/py3status/modules/whoami.py index 11ca9bf..a5e27ed 100644 --- a/py3status/modules/whoami.py +++ b/py3status/modules/whoami.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """ Simply output the currently logged in user in i3bar. @@ -14,7 +15,7 @@ class Py3status: # available configuration parameters cache_timeout = 1800 - def whoami(self, i3status_output_json, i3status_config): + def whoami(self, i3s_output_list, i3s_config): """ We use the getpass module to get the current user. """ diff --git a/py3status/modules/window-title.py b/py3status/modules/window-title.py index 5096bd3..260cb0d 100644 --- a/py3status/modules/window-title.py +++ b/py3status/modules/window-title.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """ Py3status plugin - shows current window title. @@ -40,7 +41,7 @@ class Py3status: def __init__(self): self.text = '' - def window_title(self, i3_status_output_json, i3status_config): + def window_title(self, i3s_output_list, i3s_config): window = find_focused(i3.get_tree()) transformed = False |
