From c0d6641f048238a618e525297384f4332b60f2b4 Mon Sep 17 00:00:00 2001
From: Supremicus <Supremicus@users.noreply.github.com>
Date: Sun, 9 Nov 2014 13:45:10 +1000
Subject: [PATCH] Fix missing kat url in config_providers

---
 CHANGES.md                 | 3 ++-
 sickbeard/providers/kat.py | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/CHANGES.md b/CHANGES.md
index 484e45a9..0f84869a 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,4 +1,4 @@
-### 0.x.x (2014-11-07 xx:xx:xx UTC)
+### 0.x.x (2014-11-09 xx:xx:xx UTC)
 
 * Add Bootstrap for UI features
 * Change UI to resize fluidly on different display sizes, fixes the issue where top menu items would disappear on smaller screens
@@ -48,6 +48,7 @@
 * Fix image links when anchor child images are not found at Trakt on Add Show/Add Trending Show page
 * Add image to be used when Trakt posters are void on Add Show/Add Trending Show page
 * Fix growl registration not sending sickrage update notification registration.
+* Fix missing url for kickasstorrents in config_providers
 
 [develop changelog]
 * Change improve display of progress bars in the Downloads columns of the show list page
diff --git a/sickbeard/providers/kat.py b/sickbeard/providers/kat.py
index dc13922e..840e7106 100644
--- a/sickbeard/providers/kat.py
+++ b/sickbeard/providers/kat.py
@@ -62,7 +62,7 @@ class KATProvider(generic.TorrentProvider):
         self.cache = KATCache(self)
 
         self.urls = ['http://kickass.to/', 'http://katproxy.com/', 'http://www.kickmirror.com/']
-        self.url = None
+        self.url = 'https://kickass.to/'
 
     def isEnabled(self):
         return self.enabled
-- 
GitLab