diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-12 17:26:38 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-12 17:26:38 +0200 |
commit | f5c3720a5cdfc93734733b4ac8aba79289197f8f (patch) | |
tree | fb39d1bdfec4999da9bc0b46dc731328d6fc54e8 /pyLoadCore.py | |
parent | pycurl interface, need some testing (diff) | |
download | pyload-f5c3720a5cdfc93734733b4ac8aba79289197f8f.tar.xz |
time-, plugin fix, debug output
Diffstat (limited to 'pyLoadCore.py')
-rw-r--r-- | pyLoadCore.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index 8587aea5d..9577def74 100644 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -197,6 +197,8 @@ class Core(object): 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 else: |