http -> https

This commit is contained in:
Kovid Goyal 2018-07-02 13:50:58 +05:30
parent 604f894807
commit 5a29b8fe39
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -111,7 +111,7 @@ class IdLinksRuleEdit(Dialog):
def __init__(self, key='', name='', template='', parent=None): def __init__(self, key='', name='', template='', parent=None):
title = _('Edit rule') if key else _('Create a new rule') title = _('Edit rule') if key else _('Create a new rule')
Dialog.__init__(self, title=title, name='id-links-rule-editor', parent=parent) 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 @property
def rule(self): def rule(self):