diff options
author | 2015-07-24 06:55:49 +0200 | |
---|---|---|
committer | 2015-07-24 06:55:49 +0200 | |
commit | 94d017cd2a5c1f194960827a8c7e46afc3682008 (patch) | |
tree | e06f2d20d6c4cfa2cefb446c3b266cc3c1aa4e69 /module/plugins/internal/XFSHoster.py | |
parent | Hotfixes (diff) | |
download | pyload-94d017cd2a5c1f194960827a8c7e46afc3682008.tar.xz |
Hotfixes (2)
Diffstat (limited to 'module/plugins/internal/XFSHoster.py')
-rw-r--r-- | module/plugins/internal/XFSHoster.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/XFSHoster.py b/module/plugins/internal/XFSHoster.py index 18a50a6b0..48772a817 100644 --- a/module/plugins/internal/XFSHoster.py +++ b/module/plugins/internal/XFSHoster.py @@ -14,7 +14,7 @@ class XFSHoster(SimpleHoster): __name__ = "XFSHoster" __type__ = "hoster" __version__ = "0.54" - __status__ = "stable" + __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -53,7 +53,7 @@ class XFSHoster(SimpleHoster): def setup(self): self.chunk_limit = -1 if self.premium else 1 - self.resume_download = self.multi_dl = self.premium + self.resume_download = self.multiDL = self.premium def prepare(self): @@ -152,7 +152,7 @@ class XFSHoster(SimpleHoster): stmsg = inputs['st'] - if stmsg == 'OK': + if stmsg is 'OK': self.html = self.load(action, post=inputs) elif 'Can not leech file' in stmsg: |