X-Git-Url: https://jfr.im/git/yt-dlp.git/blobdiff_plain/a74727e93cb245979c566f58de8ef864f601a5f1..cc52de43568d8cd58c7e2ef4e5cecf609da28a9c:/test/test_downloader_http.py diff --git a/test/test_downloader_http.py b/test/test_downloader_http.py index c8e28bd3a..03ae8c62a 100644 --- a/test/test_downloader_http.py +++ b/test/test_downloader_http.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # coding: utf-8 from __future__ import unicode_literals @@ -10,10 +10,10 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from test.helper import http_server_port, try_rm -from youtube_dlc import YoutubeDL -from youtube_dlc.compat import compat_http_server -from youtube_dlc.downloader.http import HttpFD -from youtube_dlc.utils import encodeFilename +from yt_dlp import YoutubeDL +from yt_dlp.compat import compat_http_server +from yt_dlp.downloader.http import HttpFD +from yt_dlp.utils import encodeFilename import threading TEST_DIR = os.path.dirname(os.path.abspath(__file__))