From 1a84d8675b4417ca9adf40bb12325c728767896a Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Tue, 27 Nov 2012 23:06:49 +0100 Subject: [PATCH] Use u instead of str in Python 2 --- youtube_dl/InfoExtractors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 85ffad18c..0bbe1a6b7 100644 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -1166,7 +1166,7 @@ class ArteTvIE(InfoExtractor): self.report_download_webpage(url) webpage = urllib2.urlopen(request).read() except (urllib2.URLError, httplib.HTTPException, socket.error), err: - self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % str(err)) + self._downloader.trouble(u'ERROR: Unable to retrieve video webpage: %s' % u(err)) return except ValueError, err: self._downloader.trouble(u'ERROR: Invalid URL: %s' % url)