1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 00:25:08 +00:00

Fix Makefile

Closes #3467, #35

Authored by: putnam
This commit is contained in:
pukkandan
2022-04-19 14:54:12 +05:30
parent fdfc8149e1
commit 6f638d325e
2 changed files with 7 additions and 13 deletions

View File

@ -5,6 +5,7 @@ import random
import re
import time
from .anvato_token_generator import NFLTokenGenerator
from .common import InfoExtractor
from ..aes import aes_encrypt
from ..compat import compat_str
@ -19,16 +20,6 @@ from ..utils import (
unsmuggle_url,
)
# This import causes a ModuleNotFoundError on some systems for unknown reason.
# See issues:
# https://github.com/yt-dlp/yt-dlp/issues/35
# https://github.com/ytdl-org/youtube-dl/issues/27449
# https://github.com/animelover1984/youtube-dl/issues/17
try:
from .anvato_token_generator import NFLTokenGenerator
except ImportError:
NFLTokenGenerator = None
def md5_text(s):
if not isinstance(s, compat_str):