diff options
author | Stefano <l.stickell@yahoo.it> | 2013-11-21 17:51:54 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-11-21 17:51:54 +0100 |
commit | 554b37b4cc8164245582104aed9bb70174dd8c46 (patch) | |
tree | 67da7745caa680da18ac3662de0fab54d1526f59 | |
parent | Merge pull request #392 from vuolter/s/hoster/PutlockerCom (diff) | |
parent | Hoster: NowDownloadEu: Parse uppercase id as well (diff) | |
download | pyload-554b37b4cc8164245582104aed9bb70174dd8c46.tar.xz |
Merge pull request #415 from vuolter/s/hoster/NowDownloadEu
NowDownloadEu: Parse uppercase id as well
-rw-r--r-- | module/plugins/hoster/NowDownloadEu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/NowDownloadEu.py b/module/plugins/hoster/NowDownloadEu.py index b5e6b6493..fbe0c7cfb 100644 --- a/module/plugins/hoster/NowDownloadEu.py +++ b/module/plugins/hoster/NowDownloadEu.py @@ -24,7 +24,7 @@ from module.utils import fixup class NowDownloadEu(SimpleHoster): __name__ = "NowDownloadEu" __type__ = "hoster" - __pattern__ = r"http://(?:www\.)?nowdownload\.(ch|eu|co)/(dl/|download\.php\?id=)(?P<ID>[a-z0-9]+)" + __pattern__ = r"http://(?:www\.)?nowdownload\.(ch|eu|co)/(dl/|download\.php\?id=)(?P<ID>[a-zA-Z0-9]+)" __version__ = "0.03" __description__ = """NowDownloadCh""" __author_name__ = ("godofdream", "Walter Purcaro") |