logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 11cc3f3ad03a88d6cb1eab18a8e5dd6bf148ac54
parent 64d6dd64c8b7a35a87655d27fc83f2e98ef6ce13
Author: dirkf <fieldhouse@gmx.net>
Date:   Thu, 11 May 2023 20:53:07 +0100

[utils] Fix `compiled_regex_type` in 249f2b6

Diffstat:

Myoutube_dl/utils.py3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -56,6 +56,7 @@ from .compat import ( compat_kwargs, compat_os_name, compat_re_Match, + compat_re_Pattern, compat_shlex_quote, compat_str, compat_struct_pack, @@ -86,7 +87,7 @@ def register_socks_protocols(): # Unfavoured alias -compiled_regex_type = compat_re_Match +compiled_regex_type = compat_re_Pattern def random_user_agent():