aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--youtube/watch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/watch.py b/youtube/watch.py
index 5d9f16c..a7d712a 100644
--- a/youtube/watch.py
+++ b/youtube/watch.py
@@ -308,7 +308,7 @@ def extract_info(video_id, use_invidious, playlist_id=None, index=None):
def video_quality_string(format):
if format['vcodec']:
- result =str(format['width'] or '?') + 'x' + str(format['height'] or '?')
+ result = str(format['width'] or '?') + 'x' + str(format['height'] or '?')
if format['fps']:
result += ' ' + str(format['fps']) + 'fps'
return result