summaryrefslogtreecommitdiffstats
path: root/pyLoadCore.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-03-09 18:22:41 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-03-09 18:22:41 +0100
commit0aaa4f998211e8c63d6b43d3a36fe7d6b561a36f (patch)
treeecd879a022d52c152cd73238eecb0a51ba51e36e /pyLoadCore.py
parentfix (diff)
downloadpyload-0aaa4f998211e8c63d6b43d3a36fe7d6b561a36f.tar.xz
several fixes, closed #84
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-xpyLoadCore.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py
index 5a222c0d3..a9283872f 100755
--- a/pyLoadCore.py
+++ b/pyLoadCore.py
@@ -18,9 +18,9 @@
@author: sebnapi
@author: RaNaN
@author: mkaay
- @version: v0.3.1
+ @version: v0.3.2
"""
-CURRENT_VERSION = '0.3.1'
+CURRENT_VERSION = '0.3.2'
from getopt import getopt
import gettext
@@ -150,7 +150,7 @@ class Core(object):
self.captchaManager = CaptchaManager(self)
self.last_update_check = 0
- self.update_check_interval = 1800
+ self.update_check_interval = 6 * 60 * 60
self.update_available = self.check_update()
self.logger.info(_("Downloadtime: %s") % self.server_methods.is_time_download())
@@ -354,6 +354,8 @@ class Core(object):
return True
else:
return False
+ except:
+ pass
finally:
self.last_update_check = time.time()