summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyLoadCore.py')
-rw-r--r--pyLoadCore.py2
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: