lets try utf-8
This commit is contained in:
parent
917cbcf399
commit
f666c4f61d
1 changed files with 2 additions and 1 deletions
|
@ -98,11 +98,12 @@ class IMDb:
|
|||
|
||||
def getPage(self, forcereload = False):
|
||||
if forcereload or not self.pageSource:
|
||||
self.pageSource = read_url(self.pageUrl)
|
||||
self.pageSource = read_url_utf8(self.pageUrl)
|
||||
return self.pageSource
|
||||
|
||||
def parse_raw_value(self, key, value):
|
||||
if key in ('runtime', 'language', 'genre', 'country', 'tagline', 'plot_outline'):
|
||||
value = unicode(value, 'utf-8')
|
||||
value = stripTags(value).strip()
|
||||
if key == 'runtime':
|
||||
parsed_value = _getTerm(value, '(.*?) min')
|
||||
|
|
Loading…
Reference in a new issue