From 82707fe3851a6d7313d7cab1c9a1765ff8015676 Mon Sep 17 00:00:00 2001 From: bashonly Date: Tue, 18 Feb 2025 17:00:15 -0600 Subject: [PATCH] fix signature Authored by: bashonly --- yt_dlp/utils/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/utils/_utils.py b/yt_dlp/utils/_utils.py index ae5bc1a9a..6f56be9b5 100644 --- a/yt_dlp/utils/_utils.py +++ b/yt_dlp/utils/_utils.py @@ -5661,7 +5661,7 @@ def stderr(self, message): self._ydl.to_stderr(message) -def _request_dump_filename(self, url, video_id, data=None, trim_length=None): +def _request_dump_filename(url, video_id, data=None, trim_length=None): if data is not None: data = hashlib.md5(data).hexdigest() basen = join_nonempty(video_id, data, url, delim='_')