diff options
author | spoob <spoob@gmx.de> | 2010-02-02 13:27:08 +0100 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2010-02-02 13:27:08 +0100 |
commit | 129e50b8db2387f88a169e7d50e64cfb83651d8c (patch) | |
tree | 571fbe7f9e69d8145932a2152a44e91aca928901 | |
parent | forgot file (diff) | |
download | pyload-129e50b8db2387f88a169e7d50e64cfb83651d8c.tar.xz |
Fixed time compare again in default
-rwxr-xr-x | pyLoadCore.py | 2 |
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
|