mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Merge branch 'hotfix/0.6.1' into develop
This commit is contained in:
commit
c016f38998
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue