Skip to content

Commit

Permalink
Py2/3 compatibility for http.client
Browse files Browse the repository at this point in the history
  • Loading branch information
phihag committed Nov 27, 2012
1 parent 03f9daa commit 348d0a7
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 59 deletions.
3 changes: 1 addition & 2 deletions youtube_dl/FileDownloader.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import httplib
import math
import os
import re
Expand Down Expand Up @@ -460,7 +459,7 @@ def process_info(self, info_dict):
success = self._do_download(filename, info_dict)
except (OSError, IOError) as err:
raise UnavailableVideoError
except (compat_urllib_error.URLError, httplib.HTTPException, socket.error) as err:
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
self.trouble(u'ERROR: unable to download video data: %s' % str(err))
return
except (ContentTooShortError, ) as err:
Expand Down
Loading

0 comments on commit 348d0a7

Please sign in to comment.