Browse Source

TorrentBytes nbsp issue

fix #4026
pull/4513/head
Ruud 10 years ago
parent
commit
2c080fec3d
  1. 2
      couchpotato/core/media/_base/providers/torrent/torrentbytes.py

2
couchpotato/core/media/_base/providers/torrent/torrentbytes.py

@ -56,7 +56,7 @@ class Base(TorrentProvider):
full_id = link['href'].replace('details.php?id=', '')
torrent_id = full_id[:6]
name = toUnicode(link.contents[0])
name = toUnicode(link.contents[0].encode('ISO-8859-1')).strip()
results.append({
'id': torrent_id,

Loading…
Cancel
Save