summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-06-30 21:55:45 +0700
committerSergey M․ <dstftw@gmail.com>2017-06-30 21:55:45 +0700
commitd4f8ce6e91aff0ba0a6a4464d5525ba66720ae86 (patch)
tree4aabb86ec1796c47c8b675459db33f068091da95
parentb311b0ead22f13f7cb10a3c2802f58e0692addcc (diff)
downloadyoutube-dl-d4f8ce6e91aff0ba0a6a4464d5525ba66720ae86.tar.gz
youtube-dl-d4f8ce6e91aff0ba0a6a4464d5525ba66720ae86.tar.xz
youtube-dl-d4f8ce6e91aff0ba0a6a4464d5525ba66720ae86.zip
[dplayit] Relax video id regex (closes #13524)
-rw-r--r--youtube_dl/extractor/dplay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dplay.py b/youtube_dl/extractor/dplay.py
index 87c5dd63e..1a41760f8 100644
--- a/youtube_dl/extractor/dplay.py
+++ b/youtube_dl/extractor/dplay.py
@@ -184,7 +184,7 @@ class DPlayItIE(InfoExtractor):
         webpage = self._download_webpage(url, display_id)
 
         info_url = self._search_regex(
-            r'url\s*:\s*["\']((?:https?:)?//[^/]+/playback/videoPlaybackInfo/\d+)',
+            r'url\s*[:=]\s*["\']((?:https?:)?//[^/]+/playback/videoPlaybackInfo/\d+)',
             webpage, 'video id')
 
         title = remove_end(self._og_search_title(webpage), ' | Dplay')