summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2010-02-02 22:18:29 +0100
committerGravatar mkaay <mkaay@mkaay.de> 2010-02-02 22:18:29 +0100
commit11fa2456d87d99571b94b0d895d6c06a2c40199f (patch)
treeb612118af4ed934c46d46500960b3ec16f2c09a0 /pyLoadCore.py
parentcloses #70, thx kepheus (diff)
parentsystemCheck.py (diff)
downloadpyload-11fa2456d87d99571b94b0d895d6c06a2c40199f.tar.xz
merge
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 9df831aed..1047273d6 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