diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-19 23:27:28 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-19 23:27:28 +0100 |
commit | 02f992336fe279244ac23a779f4c0bfc530d6ec1 (patch) | |
tree | cbfce8334e312c7a29cb9172947f239d0d856295 | |
parent | Update extractor plugins (diff) | |
download | pyload-02f992336fe279244ac23a779f4c0bfc530d6ec1.tar.xz |
[AlldebridCom] Syntax fixup
-rw-r--r-- | module/plugins/hoster/AlldebridCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/AlldebridCom.py b/module/plugins/hoster/AlldebridCom.py index ff909b596..2f4b8cd73 100644 --- a/module/plugins/hoster/AlldebridCom.py +++ b/module/plugins/hoster/AlldebridCom.py @@ -13,7 +13,7 @@ from module.utils import parseFileSize class AlldebridCom(SimpleHoster): __name__ = "AlldebridCom" __type__ = "hoster" - __version__ = "0.36" + __version__ = "0.37" __pattern__ = r'https?://(?:[^/]*\.)?alldebrid\..*' @@ -41,7 +41,7 @@ class AlldebridCom(SimpleHoster): def handleMulti(self): - password = self.getPassword().splitlines()[0] or "" + password = self.getPassword() data = json_loads(self.load("http://www.alldebrid.com/service.php", get={'link': self.pyfile.url, 'json': "true", 'pw': password})) |