From a5ec28641e7b3eee7f4ea5a39fb9e3a30c086c79 Mon Sep 17 00:00:00 2001 From: Ultrabug Date: Mon, 29 Apr 2013 14:40:29 +0200 Subject: fix i3status config reader tztime detection --- py3status/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py3status/__init__.py') 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 -- cgit v1.3