Adjust the mkdir_p import in sync/youtube.py

This commit is contained in:
tcely 2025-06-02 16:02:12 -04:00 committed by GitHub
parent fbb27eaa5d
commit 021988ff9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,7 @@
import os
from common.logger import log
from common.utils import mkdir_p
from copy import deepcopy
from pathlib import Path
from tempfile import TemporaryDirectory
@ -15,7 +16,6 @@ from urllib.parse import urlsplit, parse_qs
from django.conf import settings
from .choices import Val, FileExtension
from .hooks import postprocessor_hook, progress_hook
from .utils import mkdir_p
import yt_dlp
import yt_dlp.patch.check_thumbnails
import yt_dlp.patch.fatal_http_errors