From eca3c3d49c1df4dbc5065be3b4b27649b44cbd22 Mon Sep 17 00:00:00 2001 From: Daniel Firu Date: Tue, 13 Nov 2012 05:43:27 -0800 Subject: [PATCH] change http to https for search.py as well --- headphones/searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/searcher.py b/headphones/searcher.py index 016a4894..7e61d937 100644 --- a/headphones/searcher.py +++ b/headphones/searcher.py @@ -209,7 +209,7 @@ def searchNZB(albumid=None, new=False, losslessOnly=False): "term": term } - searchURL = "http://rss.nzbmatrix.com/rss.php?" + urllib.urlencode(params) + searchURL = "https://rss.nzbmatrix.com/rss.php?" + urllib.urlencode(params) logger.info(u'Parsing results from NZBMatrix' % searchURL) try: data = urllib2.urlopen(searchURL, timeout=20).read()