summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christopher <4Christopher@gmx.de> 2013-04-15 17:42:35 +0200
committerGravatar Christopher <4Christopher@gmx.de> 2013-04-15 17:42:35 +0200
commit5e114ee4341db4bd664beb676fff34a1deecd164 (patch)
tree0f406b4ffdd2a8d3179763c671cb3f706c7a29a0
parentDownloadVimeoCom: removed pattern for Dailymotion.com (diff)
downloadpyload-5e114ee4341db4bd664beb676fff34a1deecd164.tar.xz
DownloadVimeoCom: Fixed regular expression.
-rw-r--r--module/plugins/crypter/DownloadVimeoCom.py2
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"""