tMerge pull request #4181 from lclc/upstreamHTTPS - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 422dd953fdcaf0601bfce4c4cc7153744f6d43ad
 (DIR) parent 032f40640ecbdf2c38cf5987888057ccb2e05bcc
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 26 Mar 2018 12:21:35 +0200
       
       Merge pull request #4181 from lclc/upstreamHTTPS
       
       Use HTTPS for weblinks
       Diffstat:
         M gui/qt/main_window.py               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -538,7 +538,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
        
                help_menu = menubar.addMenu(_("&Help"))
                help_menu.addAction(_("&About"), self.show_about)
       -        help_menu.addAction(_("&Official website"), lambda: webbrowser.open("http://electrum.org"))
       +        help_menu.addAction(_("&Official website"), lambda: webbrowser.open("https://electrum.org"))
                help_menu.addSeparator()
                help_menu.addAction(_("&Documentation"), lambda: webbrowser.open("http://docs.electrum.org/")).setShortcut(QKeySequence.HelpContents)
                help_menu.addAction(_("&Report Bug"), self.show_report_bug)
       t@@ -2673,7 +2673,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
                msg = _('OpenAlias record, used to receive coins and to sign payment requests.') + '\n\n'\
                      + _('The following alias providers are available:') + '\n'\
                      + '\n'.join(['https://cryptoname.co/', 'http://xmr.link']) + '\n\n'\
       -              + 'For more information, see http://openalias.org'
       +              + 'For more information, see https://openalias.org'
                alias_label = HelpLabel(_('OpenAlias') + ':', msg)
                alias = self.config.get('alias','')
                alias_e = QLineEdit(alias)