1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-10 07:33:03 +08:00

ImportError fix - change get_testcases to gettestcases in check-porn.py

This commit is contained in:
Kareem Moussa 2017-09-18 19:20:46 -07:00
parent 4d8c4b46d5
commit 267e6f6f6b

View File

@ -14,7 +14,7 @@ import os
import sys
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from test.helper import get_testcases
from test.helper import gettestcases
from youtube_dl.utils import compat_urllib_parse_urlparse
from youtube_dl.utils import compat_urllib_request
@ -24,7 +24,7 @@ if len(sys.argv) > 1:
else:
METHOD = 'EURISTIC'
for test in get_testcases():
for test in gettestcases():
if METHOD == 'EURISTIC':
try:
webpage = compat_urllib_request.urlopen(test['url'], timeout=10).read()