tqt wizard: follow-up prev; simplify - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 5e04f084b7505e6c352189354f7ebecbe9c834fe DIR parent f44f7d60ab8f5e339d561aa66ed318b834f1f190 HTML Author: SomberNight <somber.night@protonmail.com> Date: Sat, 14 Sep 2019 16:25:35 +0200 qt wizard: follow-up prev; simplify Diffstat: M electrum/gui/qt/installwizard.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) --- DIR diff --git a/electrum/gui/qt/installwizard.py b/electrum/gui/qt/installwizard.py t@@ -193,10 +193,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): vbox.addLayout(hbox2) self.set_layout(vbox, title=_('Electrum wallet')) - try: - temp_storage = WalletStorage(path, manual_upgrades=True) - except (StorageReadWriteError, WalletFileException): - temp_storage = None # type: Optional[WalletStorage] + temp_storage = None # type: Optional[WalletStorage] wallet_folder = os.path.dirname(path) def on_choose():