[refactor] Single quotes consistency
[youtube-dl] / youtube_dl / extractor / ellentv.py
index 476cce2d0d89683ff89c9a7a931d5b70c99d8912..4c8190d68d712bf702b5e015c95bbdda4643cefd 100644 (file)
@@ -72,7 +72,7 @@ class EllenTVClipsIE(InfoExtractor):
     def _extract_playlist(self, webpage):
         json_string = self._search_regex(r'playerView.addClips\(\[\{(.*?)\}\]\);', webpage, 'json')
         try:
-            return json.loads("[{" + json_string + "}]")
+            return json.loads('[{' + json_string + '}]')
         except ValueError as ve:
             raise ExtractorError('Failed to download JSON', cause=ve)