diff options
author | mkaay <mkaay@mkaay.de> | 2010-02-02 22:18:29 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-02-02 22:18:29 +0100 |
commit | 11fa2456d87d99571b94b0d895d6c06a2c40199f (patch) | |
tree | b612118af4ed934c46d46500960b3ec16f2c09a0 /pyLoadCore.py | |
parent | closes #70, thx kepheus (diff) | |
parent | systemCheck.py (diff) | |
download | pyload-11fa2456d87d99571b94b0d895d6c06a2c40199f.tar.xz |
merge
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 2 |
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
|