summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2010-02-02 13:27:08 +0100
committerGravatar spoob <spoob@gmx.de> 2010-02-02 13:27:08 +0100
commit129e50b8db2387f88a169e7d50e64cfb83651d8c (patch)
tree571fbe7f9e69d8145932a2152a44e91aca928901 /pyLoadCore.py
parentforgot file (diff)
downloadpyload-129e50b8db2387f88a169e7d50e64cfb83651d8c.tar.xz
Fixed time compare again in default
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-xpyLoadCore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index dbc9dc1cd..98f525534 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -312,7 +312,7 @@ class Core(object):
if start == end: return True
- now = time.localtime()[3:5]
+ now = list(time.localtime()[3:5])
if start < now and end > now: return True
elif start > end and (now > start or now < end): return True
elif start < now and end < now and start > end: return True