From 8d5f9185a43c0367634499de07a7723eb4c134fc Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 14 Oct 2023 10:13:27 +0200 Subject: [PATCH] follow-up #8646 --- electrum/gui/qt/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electrum/gui/qt/__init__.py b/electrum/gui/qt/__init__.py index 8adb32ffb..025eca2e8 100644 --- a/electrum/gui/qt/__init__.py +++ b/electrum/gui/qt/__init__.py @@ -343,6 +343,8 @@ class ElectrumGui(BaseElectrumGui, Logger): if not force_wizard: try: wallet = self.daemon.load_wallet(path, None) + except FileNotFoundError: + pass # open with wizard below except InvalidPassword: pass # open with wizard below except WalletRequiresSplit: