diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 18:21:06 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 18:21:06 +0100 | 
| commit | 6ad98fb3fda767fb8da0d3c40da408ec2a09b5d4 (patch) | |
| tree | cf35e35e45b9d7457148719bbd984ec9bc211b4d /youtube_dl/FileDownloader.py | |
| parent | b08e09c3701d77413e1408a3475b513cc345cd5c (diff) | |
Correct exception raising
Diffstat (limited to 'youtube_dl/FileDownloader.py')
| -rw-r--r-- | youtube_dl/FileDownloader.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index a135be352..48c8eb126 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -463,7 +463,7 @@ class FileDownloader(object):                  try:                      success = self._do_download(filename, info_dict)                  except (OSError, IOError) as err: -                    raise UnavailableVideoError +                    raise UnavailableVideoError()                  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 | 
