diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-01-17 18:31:52 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-01-17 18:31:52 +0100 |
commit | 8d842efb12ee7db88505e3078b626855e55aa4bf (patch) | |
tree | 54670c428b961f299ec10dd91255f8f17333f7d5 /pyLoadCore.py | |
parent | Fixed Shareonline (diff) | |
download | pyload-8d842efb12ee7db88505e3078b626855e55aa4bf.tar.xz |
some fixes, closed #62 ??
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 5 |
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]
|