Browse Source

Fix Escapist IE

rtmp_test
Philipp Hagemeister 13 years ago
parent
commit
9ab3406ddb
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/InfoExtractors.py

+ 2
- 1
youtube_dl/InfoExtractors.py View File

@ -2188,11 +2188,12 @@ class EscapistIE(InfoExtractor):
self.report_extraction(showName)
try:
webPage = urllib2.urlopen(url).read()
webPageBytes = urllib2.urlopen(url).read()
except (urllib2.URLError, httplib.HTTPException, socket.error), err:
self._downloader.trouble(u'ERROR: unable to download webpage: ' + unicode(err))
return
webPage = webPageBytes.decode('utf-8')
descMatch = re.search('<meta name="description" content="([^"]*)"', webPage)
description = unescapeHTML(descMatch.group(1))
imgMatch = re.search('<meta property="og:image" content="([^"]*)"', webPage)


Loading…
Cancel
Save