diff options
author | GamaC0de <nitzo2001@yahoo.com> | 2016-06-02 12:31:40 +0200 |
---|---|---|
committer | GamaC0de <nitzo2001@yahoo.com> | 2016-06-02 12:31:40 +0200 |
commit | 64635771525360154a6f263311019fb48ca6c8a1 (patch) | |
tree | 590c25bc9c102822a86f53b2d5302cbc1305434b | |
parent | [NitroflareCom] Update (diff) | |
download | pyload-64635771525360154a6f263311019fb48ca6c8a1.tar.xz |
[UpdateManager] updatemanager.pyload.org is offline, use updatemanager-spyload.rhcloud.com
-rw-r--r-- | module/plugins/hooks/UpdateManager.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hooks/UpdateManager.py b/module/plugins/hooks/UpdateManager.py index 857c4355a..3cb325d29 100644 --- a/module/plugins/hooks/UpdateManager.py +++ b/module/plugins/hooks/UpdateManager.py @@ -15,7 +15,7 @@ from module.plugins.internal.misc import encode, exists, Expose, fsjoin, threade class UpdateManager(Addon): __name__ = "UpdateManager" __type__ = "hook" - __version__ = "1.12" + __version__ = "1.13" __status__ = "testing" __config__ = [("activated" , "bool", "Activated" , True ), @@ -33,7 +33,8 @@ class UpdateManager(Addon): _VERSION = re.compile(r'^\s*__version__\s*=\s*("|\')([\d.]+)\1', re.M) - SERVER_URL = "http://updatemanager.pyload.org" + # SERVER_URL = "http://updatemanager.pyload.org" + SERVER_URL = "http://updatemanager-spyload.rhcloud.com" CHECK_INTERVAL = 3 * 60 * 60 #: 3 hours |