summaryrefslogtreecommitdiffstats
path: root/py3status
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2013-04-29 14:40:29 +0200
committerUltrabug <ultrabug@gentoo.org>2013-04-29 14:40:29 +0200
commita5ec28641e7b3eee7f4ea5a39fb9e3a30c086c79 (patch)
treee2466ea6d77c2bf53a56c4c1a1f231b2816a2cad /py3status
parent9294db752fc5b448200475953b51ee145d2b3e15 (diff)
fix i3status config reader tztime detection
Diffstat (limited to 'py3status')
-rwxr-xr-xpy3status/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py3status/__init__.py b/py3status/__init__.py
index 17f67a2..d54dedf 100755
--- a/py3status/__init__.py
+++ b/py3status/__init__.py
@@ -133,7 +133,7 @@ def i3status_config_reader(config_file):
line = line.strip(' \t\n\r')
if line.startswith('general'):
in_general = True
- elif line.startswith('time'):
+ elif line.startswith('time') or line.startswith('tztime'):
in_time = True
elif line.startswith('}'):
in_general = False