Merge branch 'hotfix/0.6.1' into develop

This commit is contained in:
adam 2015-01-20 22:18:19 +08:00
commit c016f38998
2 changed files with 7 additions and 1 deletions

View file

@ -17,6 +17,11 @@
[develop changelog]
### 0.6.1 (2015-01-20 14:00:00 UTC)
* Fix snatching from TorrentBytes provider
### 0.6.0 (2015-01-18 05:05:00 UTC)
* Add network logos BBC Canada, Crackle, El Rey Network, SKY Atlantic, and Watch

View file

@ -226,9 +226,10 @@ class TorrentBytesProvider(generic.TorrentProvider):
if title:
title = u'' + title
title = title.replace(' ', '.')
title = title.replace(' ', '.').replace(u'\xa0', '')
if url:
url = url.replace(u'\xa0', '')
url = str(url).replace('&', '&')
return (title, url)