diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-01-11 10:47:39 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-01-11 10:47:39 +0100 |
commit | 8ad6b5ed9f90e07fb2847b38818d1352c71fcb18 (patch) | |
tree | b0be5e3783f86f675598fa09263b77e83d4f2526 | |
parent | d5bb814d348558a9700f9d8d2a063a2de2de4274 (diff) |
[compat] Correct socket error class reference
-rw-r--r-- | youtube_dl/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/compat.py b/youtube_dl/compat.py index 07ceaa170..4453b34fc 100644 --- a/youtube_dl/compat.py +++ b/youtube_dl/compat.py @@ -329,7 +329,7 @@ if sys.version_info < (2, 7): if err is not None: raise err else: - raise error("getaddrinfo returns an empty list") + raise socket.error("getaddrinfo returns an empty list") else: compat_socket_create_connection = socket.create_connection |