diff --git a/CHANGES.md b/CHANGES.md
index 484e45a99034546e2c5b1d93d72fff45c2f328ad..0f84869aa22534ade1700a2f33ab0374418af3e9 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 dc13922e735408cc52f99a399e1e7861719b110f..840e71069942602a3435bb15b0e3d085f4bd7d4a 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