about summary refs log tree commit diff
path: root/devscripts
diff options
context:
space:
mode:
authordirkf <fieldhouse@gmx.net>2023-06-29 15:27:12 +0100
committerdirkf <fieldhouse@gmx.net>2023-07-05 22:51:15 +0100
commit2500300c2a5986ace34390aa473a8bd51f83622c (patch)
tree25493d6a3fe317dada48b82ace12159e39badec4 /devscripts
parent58fc5bde47215d9e7c60647dd21202a254b3b066 (diff)
downloadyoutube-dl-2500300c2a5986ace34390aa473a8bd51f83622c.tar.gz
youtube-dl-2500300c2a5986ace34390aa473a8bd51f83622c.tar.xz
youtube-dl-2500300c2a5986ace34390aa473a8bd51f83622c.zip
[workflows/ci.yml] Restore test support for Py 3.2
Diffstat (limited to 'devscripts')
-rw-r--r--devscripts/make_lazy_extractors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/devscripts/make_lazy_extractors.py b/devscripts/make_lazy_extractors.py
index edc19183d..4bddca047 100644
--- a/devscripts/make_lazy_extractors.py
+++ b/devscripts/make_lazy_extractors.py
@@ -6,6 +6,10 @@ import os
 from os.path import dirname as dirn
 import sys
 
+from youtube_dl.compat import compat_register_utf8
+
+compat_register_utf8()
+
 print('WARNING: Lazy loading extractors is an experimental feature that may not always work', file=sys.stderr)
 
 sys.path.insert(0, dirn(dirn((os.path.abspath(__file__)))))