diff options
author | Christopher <4Christopher@gmx.de> | 2013-04-15 17:42:35 +0200 |
---|---|---|
committer | Christopher <4Christopher@gmx.de> | 2013-04-15 17:42:35 +0200 |
commit | 5e114ee4341db4bd664beb676fff34a1deecd164 (patch) | |
tree | 0f406b4ffdd2a8d3179763c671cb3f706c7a29a0 | |
parent | DownloadVimeoCom: removed pattern for Dailymotion.com (diff) | |
download | pyload-5e114ee4341db4bd664beb676fff34a1deecd164.tar.xz |
DownloadVimeoCom: Fixed regular expression.
-rw-r--r-- | module/plugins/crypter/DownloadVimeoCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/DownloadVimeoCom.py b/module/plugins/crypter/DownloadVimeoCom.py index 7e76a90ed..88310915b 100644 --- a/module/plugins/crypter/DownloadVimeoCom.py +++ b/module/plugins/crypter/DownloadVimeoCom.py @@ -8,7 +8,7 @@ from module.plugins.Crypter import Crypter class DownloadVimeoCom(Crypter): __name__ = 'DownloadVimeoCom' __type__ = 'crypter' - __pattern__ = r'(?:http://vimeo.com/\d*?|http://smotri.com/video/view/?id=.*)' + __pattern__ = r'(?:http://vimeo\.com/\d*|http://smotri\.com/video/view/\?id=.*)' ## The download from dailymotion failed with a 403 __version__ = '0.1' __description__ = """Video Download Plugin based on downloadvimeo.com""" |