aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/videopremium.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-02-14 15:37:17 +0600
committerSergey M․ <dstftw@gmail.com>2016-02-14 15:37:17 +0600
commit611c1dd96efc36a788475e14cc4de64d554d28a0 (patch)
tree4ac501e07c6ab8281c22de2d0ec577561e32465c /youtube_dl/extractor/videopremium.py
parentd800609c62703e4e6edd2891a8432306462e4db3 (diff)
downloadyoutube-dl-611c1dd96efc36a788475e14cc4de64d554d28a0.zip
youtube-dl-611c1dd96efc36a788475e14cc4de64d554d28a0.tar.gz
youtube-dl-611c1dd96efc36a788475e14cc4de64d554d28a0.tar.bz2
[refactor] Single quotes consistency
Diffstat (limited to 'youtube_dl/extractor/videopremium.py')
-rw-r--r--youtube_dl/extractor/videopremium.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/youtube_dl/extractor/videopremium.py b/youtube_dl/extractor/videopremium.py
index 3176e3b..5de8273 100644
--- a/youtube_dl/extractor/videopremium.py
+++ b/youtube_dl/extractor/videopremium.py
@@ -26,7 +26,7 @@ class VideoPremiumIE(InfoExtractor):
webpage_url = 'http://videopremium.tv/' + video_id
webpage = self._download_webpage(webpage_url, video_id)
- if re.match(r"^<html><head><script[^>]*>window.location\s*=", webpage):
+ if re.match(r'^<html><head><script[^>]*>window.location\s*=', webpage):
# Download again, we need a cookie
webpage = self._download_webpage(
webpage_url, video_id,
@@ -37,10 +37,10 @@ class VideoPremiumIE(InfoExtractor):
return {
'id': video_id,
- 'url': "rtmp://e%d.md.iplay.md/play" % random.randint(1, 16),
- 'play_path': "mp4:%s.f4v" % video_id,
- 'page_url': "http://videopremium.tv/" + video_id,
- 'player_url': "http://videopremium.tv/uplayer/uppod.swf",
+ 'url': 'rtmp://e%d.md.iplay.md/play' % random.randint(1, 16),
+ 'play_path': 'mp4:%s.f4v' % video_id,
+ 'page_url': 'http://videopremium.tv/' + video_id,
+ 'player_url': 'http://videopremium.tv/uplayer/uppod.swf',
'ext': 'f4v',
'title': video_title,
}