diff options
author | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-12-20 16:30:55 +0100 |
---|---|---|
committer | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-12-20 16:30:55 +0100 |
commit | 6b3aef80ceba9b4715065be924dcb1f83ec36655 (patch) | |
tree | 37f54709feb3ee463384643a8f6fba6996300ab5 /test/test_youtube_subtitles.py | |
parent | 77c4beab8a0c13e158bad8af4e014d57766f1940 (diff) |
better Vimeo tests; fixed a couple of VimeoIE fields
Diffstat (limited to 'test/test_youtube_subtitles.py')
-rw-r--r-- | test/test_youtube_subtitles.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/test_youtube_subtitles.py b/test/test_youtube_subtitles.py index 64a391d14..5d3566a35 100644 --- a/test/test_youtube_subtitles.py +++ b/test/test_youtube_subtitles.py @@ -2,7 +2,6 @@ import sys import unittest -import socket import json import io import hashlib @@ -24,7 +23,6 @@ cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar) proxy_handler = compat_urllib_request.ProxyHandler() opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler()) compat_urllib_request.install_opener(opener) -socket.setdefaulttimeout(300) # 5 minutes should be enough (famous last words) class FakeDownloader(object): def __init__(self): |