Browse Source

[kakao] Fix _VALID_URL

Sergey M․ 8 years ago
parent
commit
4d182955a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/kakao.py

+ 1 - 1
youtube_dl/extractor/kakao.py

@@ -12,7 +12,7 @@ from ..utils import (
 
 
 class KakaoIE(InfoExtractor):
-    _VALID_URL = r'https?://tv.kakao.com/channel/(?P<channel>\d+)/cliplink/(?P<id>\d+)'
+    _VALID_URL = r'https?://tv\.kakao\.com/channel/(?P<channel>\d+)/cliplink/(?P<id>\d+)'
     _API_BASE = 'http://tv.kakao.com/api/v1/ft/cliplinks'
 
     _TESTS = [{