diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-16 21:05:09 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-16 21:05:09 +0100 |
commit | a9eb3195dba049b1ac5dc9eb9c26dd4de87cfa99 (patch) | |
tree | f8ca227a64f2366b945fc661d72a577c49d5ed3c /module/plugins/hoster | |
parent | Merge pull request #385 from vuolter/s/hoster/NowDownloadEu (diff) | |
parent | Hoster: FastixRu: Fixed pattern (diff) | |
download | pyload-a9eb3195dba049b1ac5dc9eb9c26dd4de87cfa99.tar.xz |
Merge pull request #384 from vuolter/s/hoster/FastixRu
Hoster: FastixRu: Fixed pattern
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/FastixRu.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/FastixRu.py b/module/plugins/hoster/FastixRu.py index c2791c5d2..8805081c9 100644 --- a/module/plugins/hoster/FastixRu.py +++ b/module/plugins/hoster/FastixRu.py @@ -9,11 +9,11 @@ from module.common.json_layer import json_loads class FastixRu(Hoster): __name__ = "FastixRu" - __version__ = "0.03" + __version__ = "0.04" __type__ = "hoster" - __pattern__ = r"http?://.*fastix.ru\..*" + __pattern__ = r"http://(?:www\.)?fastix\.(ru|it)/file/(?P<ID>[a-zA-Z0-9]{24})" __description__ = """Fastix hoster plugin""" - __author_name__ = ("Massimo, Rosamilia") + __author_name__ = ("Massimo Rosamilia") __author_mail__ = ("max@spiritix.eu") def getFilename(self, url): |