diff --git a/core/support.py b/core/support.py index 6ce0cdc9..576b8567 100755 --- a/core/support.py +++ b/core/support.py @@ -151,6 +151,7 @@ def cleantitle(title): cleantitle = '' if title: if type(title) != str: title.decode('UTF-8') + title = scrapertools.unescape(title) title = scrapertools.decodeHtmlentities(title) cleantitle = title.replace('"', "'").replace('×', 'x').replace('–', '-').strip() return cleantitle