diff options
| author | rzhxeo <rzhxeo@users.noreply.github.com> | 2013-10-27 00:21:27 +0200 | 
|---|---|---|
| committer | rzhxeo <rzhxeo@users.noreply.github.com> | 2013-10-27 00:21:27 +0200 | 
| commit | 8cb57d9b91cce72b522d89b5e3e469c433956a07 (patch) | |
| tree | 6fcc3af18ed409a20c1d37894fb3188ea075899d | |
| parent | 1d45a23b745cdbb361dd5cef8f848f7ebcfa8f5a (diff) | |
[Tube8IE] Escape dot in regex
| -rw-r--r-- | youtube_dl/extractor/tube8.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/tube8.py b/youtube_dl/extractor/tube8.py index b7e7d984d..ef8d21642 100644 --- a/youtube_dl/extractor/tube8.py +++ b/youtube_dl/extractor/tube8.py @@ -13,7 +13,7 @@ from ..aes import (  )  class Tube8IE(InfoExtractor): -    _VALID_URL = r'^(?:https?://)?(?:www\.)?(?P<url>tube8.com/[^/]+/[^/]+/(?P<videoid>[0-9]+)/?)' +    _VALID_URL = r'^(?:https?://)?(?:www\.)?(?P<url>tube8\.com/[^/]+/[^/]+/(?P<videoid>[0-9]+)/?)'      _TEST = {          u'url': u'http://www.tube8.com/teen/kasia-music-video/229795/',          u'file': u'229795.mp4', | 
