Merge pull request #377 from JackDandy/feature/ChangeWombles

Change provider Womble's use SSL.
This commit is contained in:
JackDandy 2015-06-02 18:28:37 +01:00
commit 674be0e868
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@
* Fix provider SCC stop snatching releases for episodes already completed
* Fix provider SCC handle null server responses
* Change provider SCC remove 1 of 3 requests per search to save 30% time
* Change provider Womble's use SSL
### 0.9.1 (2015-05-25 03:03:00 UTC)

View file

@ -24,7 +24,7 @@ class WombleProvider(generic.NZBProvider):
def __init__(self):
generic.NZBProvider.__init__(self, "Womble's Index", False, False)
self.cache = WombleCache(self)
self.url = 'http://newshost.co.za/'
self.url = 'https://newshost.co.za/'
class WombleCache(tvcache.TVCache):