Browse Source

[Tube8IE] Escape dot in regex

rzhxeo 12 years ago
parent
commit
8cb57d9b91
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/tube8.py

+ 1 - 1
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',