]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/rockstargames.py
[cleanup] Fix misc bugs (#8968)
[yt-dlp.git] / yt_dlp / extractor / rockstargames.py
index b0b92e642b32da6a5c5ccbef4100d2382fbb6915..16622430cd3e1c2eba769264cc18a3fe9f8cd069 100644 (file)
@@ -38,14 +38,14 @@ def _real_extract(self, url):
         title = video['title']
 
         formats = []
-        for video in video['files_processed']['video/mp4']:
-            if not video.get('src'):
+        for v in video['files_processed']['video/mp4']:
+            if not v.get('src'):
                 continue
-            resolution = video.get('resolution')
+            resolution = v.get('resolution')
             height = int_or_none(self._search_regex(
                 r'^(\d+)[pP]$', resolution or '', 'height', default=None))
             formats.append({
-                'url': self._proto_relative_url(video['src']),
+                'url': self._proto_relative_url(v['src']),
                 'format_id': resolution,
                 'height': height,
             })