summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-01-17 18:31:52 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-01-17 18:31:52 +0100
commit8d842efb12ee7db88505e3078b626855e55aa4bf (patch)
tree54670c428b961f299ec10dd91255f8f17333f7d5 /pyLoadCore.py
parentFixed Shareonline (diff)
downloadpyload-8d842efb12ee7db88505e3078b626855e55aa4bf.tar.xz
some fixes, closed #62 ??
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-xpyLoadCore.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index 4b2e63a2c..96cd1b204 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -303,6 +303,11 @@ class Core(object):
self.logger.info(_("created index of plugins"))
def compare_time(self, start, end):
+
+ toInt = lambda x: int(x)
+ start = map(toInt, start)
+ end = map(toInt, end)
+
if start == end: return True
now = time.localtime()[3:5]