From 4525215e384a1446404ef0c3909fd824720d2b2e Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 20 Nov 2011 14:33:11 +0100 Subject: automatic plugin reloader --- module/Utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/Utils.py') diff --git a/module/Utils.py b/module/Utils.py index 36713b778..3919b5ff0 100644 --- a/module/Utils.py +++ b/module/Utils.py @@ -82,9 +82,9 @@ def compare_time(start, end): if start == end: return True now = list(time.localtime()[3:5]) - if start < now and end > now: return True + if start < now < end: return True elif start > end and (now > start or now < end): return True - elif start < now and end < now and start > end: return True + elif start < now > end < start: return True else: return False -- cgit v1.2.3