about summary refs log tree commit diff
path: root/youtube_dl/extractor/traileraddict.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/traileraddict.py
parentd800609c62703e4e6edd2891a8432306462e4db3 (diff)
downloadyoutube-dl-611c1dd96efc36a788475e14cc4de64d554d28a0.tar.gz
youtube-dl-611c1dd96efc36a788475e14cc4de64d554d28a0.tar.xz
youtube-dl-611c1dd96efc36a788475e14cc4de64d554d28a0.zip
[refactor] Single quotes consistency
Diffstat (limited to 'youtube_dl/extractor/traileraddict.py')
-rw-r--r--youtube_dl/extractor/traileraddict.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/traileraddict.py b/youtube_dl/extractor/traileraddict.py
index 1c53a3fd0..0e01b15fc 100644
--- a/youtube_dl/extractor/traileraddict.py
+++ b/youtube_dl/extractor/traileraddict.py
@@ -38,12 +38,12 @@ class TrailerAddictIE(InfoExtractor):
 
         # Presence of (no)watchplus function indicates HD quality is available
         if re.search(r'function (no)?watchplus()', webpage):
-            fvar = "fvarhd"
+            fvar = 'fvarhd'
         else:
-            fvar = "fvar"
+            fvar = 'fvar'
 
-        info_url = "http://www.traileraddict.com/%s.php?tid=%s" % (fvar, str(video_id))
-        info_webpage = self._download_webpage(info_url, video_id, "Downloading the info webpage")
+        info_url = 'http://www.traileraddict.com/%s.php?tid=%s' % (fvar, str(video_id))
+        info_webpage = self._download_webpage(info_url, video_id, 'Downloading the info webpage')
 
         final_url = self._search_regex(r'&fileurl=(.+)',
                                        info_webpage, 'Download url').replace('%3F', '?')