1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-24 00:49:06 +00:00

Fix quotes

This commit is contained in:
Paul Storkman
2024-10-29 16:02:57 +01:00
parent c6cc3a8ab2
commit 87ad4d4774
2 changed files with 2 additions and 2 deletions

View File

@@ -1632,7 +1632,7 @@ class YoutubeDL:
if max_wait_retries > 0:
self.report_error(f'Giving up after {wait_retries - 1} {"retries" if wait_retries > 2 else "retry"} while waiting.')
else:
self.report_error(f'Video is still unavailable after waiting.')
self.report_error('Video is still unavailable after waiting.')
raise UserNotLive('Maximum number of retries exceeded while waiting for stream')
if e.expected:
self.to_screen(f'{e}; Re-extracting data')