diff options
| author | Vasiliy Horbachenko <shadowprince47@gmail.com> | 2014-05-22 17:18:24 +0300 |
|---|---|---|
| committer | Vasiliy Horbachenko <shadowprince47@gmail.com> | 2014-05-22 17:18:24 +0300 |
| commit | cff1906f8d6eab1a01fba07326d3ab5175e52975 (patch) | |
| tree | 842eb977444e1ef9da63c309a1ab19dc733235cd | |
| parent | ab38f5686d6c0c2fa658743e4e0d18ae0f7af76e (diff) | |
small fix
| -rw-r--r-- | modules/battery-level.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/battery-level.py b/modules/battery-level.py index ed6d484..37a25d6 100644 --- a/modules/battery-level.py +++ b/modules/battery-level.py @@ -5,10 +5,6 @@ import math """ Module for displaying information about battery. - -@author shadowprince -@version 1.0 -@license Eclipse Public License """ CACHE_TIME = 30 # time to update battery @@ -49,7 +45,7 @@ class Py3status: if full: response['full_text'] = "" if HIDE_WHEN_FULL else BLOCKS[-1] elif charging: - response['full_text'] = CHARGING_CHAR + response['full_text'] = CHARGING_CHARACTER response['color'] = COLOR_CHARGING else: response['full_text'] = character |
