From 5a29b8fe39427e25a3b7a66b04202781bf942a67 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 2 Jul 2018 13:50:58 +0530 Subject: [PATCH] http -> https --- src/calibre/gui2/preferences/look_feel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/preferences/look_feel.py b/src/calibre/gui2/preferences/look_feel.py index 7cfe96d1b0..915ac150e7 100644 --- a/src/calibre/gui2/preferences/look_feel.py +++ b/src/calibre/gui2/preferences/look_feel.py @@ -111,7 +111,7 @@ class IdLinksRuleEdit(Dialog): def __init__(self, key='', name='', template='', parent=None): title = _('Edit rule') if key else _('Create a new rule') Dialog.__init__(self, title=title, name='id-links-rule-editor', parent=parent) - self.key.setText(key), self.nw.setText(name), self.template.setText(template or 'http://example.com/{id}') + self.key.setText(key), self.nw.setText(name), self.template.setText(template or 'https://example.com/{id}') @property def rule(self):