diff options
author | Kareem Moussa <itstehkman@gmail.com> | 2017-09-19 08:51:20 -0700 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2017-09-19 22:51:20 +0700 |
commit | 8a1a60d17397721620e75d83f2aad3a353286f15 (patch) | |
tree | b195c9d2649f8cea92517f73e5f90ec32cfbaecb | |
parent | 4d8c4b46d5668387cc685123f80fb64bbc7c5aff (diff) |
[devscripts/check-porn] Fix gettestcases import
-rw-r--r-- | devscripts/check-porn.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devscripts/check-porn.py b/devscripts/check-porn.py index 7a219ebe9..72b2ee422 100644 --- a/devscripts/check-porn.py +++ b/devscripts/check-porn.py @@ -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() |