diff options
| author | Ultrabug <ultrabug@gentoo.org> | 2015-01-26 10:49:27 +0100 |
|---|---|---|
| committer | Ultrabug <ultrabug@gentoo.org> | 2015-01-26 10:49:27 +0100 |
| commit | e64255f98b85820046e261027a1f20c67f766f41 (patch) | |
| tree | d948e2bc649875d63ec16591bec2c7e7e1b28897 | |
| parent | c7a63a70303e198d0bcc6253a67d64293cba0adb (diff) | |
fix typo in imap module thx to @tasse
| -rw-r--r-- | py3status/modules/imap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py3status/modules/imap.py b/py3status/modules/imap.py index cd14c8f..a52c848 100644 --- a/py3status/modules/imap.py +++ b/py3status/modules/imap.py @@ -35,7 +35,7 @@ class Py3status: if mail_count == 'N/A': response['color'] = check_failed_color - elif mail_count != '0': + elif mail_count != 0: response['color'] = new_mail_color return response |
