diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-09-28 16:50:29 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-09-28 16:50:29 +0200 |
commit | 390f7deca39ba14f698b3c56660eee2a5502b79a (patch) | |
tree | 9fa95eaa5b0ab439d11dba8977266294154cdd8b /module/plugins/hoster/FileomCom.py | |
parent | [DeadHoster] Improve getInfo + two hosters mark dead (diff) | |
download | pyload-390f7deca39ba14f698b3c56660eee2a5502b79a.tar.xz |
Cleaned-up XFileSharingPro based plugins
Diffstat (limited to 'module/plugins/hoster/FileomCom.py')
-rw-r--r-- | module/plugins/hoster/FileomCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FileomCom.py b/module/plugins/hoster/FileomCom.py index c49344a69..71931eb97 100644 --- a/module/plugins/hoster/FileomCom.py +++ b/module/plugins/hoster/FileomCom.py @@ -11,7 +11,7 @@ class FileomCom(XFileSharingPro): __type__ = "hoster" __version__ = "0.01" - __pattern__ = r'https?://(?:www\.)?fileom\.com/\w+' + __pattern__ = r'https?://(?:www\.)?fileom\.com/\w{12}' __description__ = """Fileom.com hoster plugin""" __author_name__ = "Walter Purcaro" @@ -31,9 +31,9 @@ class FileomCom(XFileSharingPro): def setup(self): - self.resumeDownload = self.premium self.multiDL = True self.chunkLimit = 1 + self.resumeDownload = self.premium getInfo = create_getInfo(FileomCom) |