From 6c57316ce6af9972f548d6a45ce06e244b047410 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 19 Mar 2013 20:46:00 +0100 Subject: [PATCH] Use https for changelog --- Desktop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Desktop.py b/Desktop.py index fde68dc..a284d0a 100644 --- a/Desktop.py +++ b/Desktop.py @@ -166,8 +166,8 @@ class CouchPotatoApp(wx.App, SoftwareUpdate): def OnInit(self): # Updater - base_url = 'http://couchpota.to/updates/%s/' % VERSION - self.InitUpdates(base_url, base_url + 'changelog.html', + base_url = 'https://couchpota.to/updates/%s' + self.InitUpdates(base_url % VERSION + '/', base_url % 'changelog.html', icon = wx.Icon('icon.png')) self.frame = MainFrame(self)