URI: 
       tMerge pull request #3291 from SomberNight/ledger_old_fw_exception1 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit e9191caf3912066d3660becc11cab9c11ea17ba2
   DIR parent f97e81252d35b0e12b2e5e361e9733f0d08eb2eb
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 13 Nov 2017 18:11:14 +0100
       
       Merge pull request #3291 from SomberNight/ledger_old_fw_exception1
       
       fix: ledger old fw segwit crash
       Diffstat:
         M gui/qt/util.py                      |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/util.py b/gui/qt/util.py
       t@@ -200,7 +200,7 @@ class MessageBoxMixin(object):
            def msg_box(self, icon, parent, title, text, buttons=QMessageBox.Ok,
                        defaultButton=QMessageBox.NoButton):
                parent = parent or self.top_level_window()
       -        d = QMessageBox(icon, title, text, buttons, parent)
       +        d = QMessageBox(icon, title, str(text), buttons, parent)
                d.setWindowModality(Qt.WindowModal)
                d.setDefaultButton(defaultButton)
                return d.exec_()