diff options
Diffstat (limited to 'youtube_dl/utils.py')
| -rw-r--r-- | youtube_dl/utils.py | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 6e982157c..d18073d72 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -290,6 +290,13 @@ class ContentTooShortError(Exception):  		self.expected = expected +class Trouble(Exception): +	"""Trouble helper exception +	 +	This is an exception to be handled with +	FileDownloader.trouble +	""" +  class YoutubeDLHandler(urllib2.HTTPHandler):  	"""Handler for HTTP requests and responses. | 
