From 9598c6999ff9ed986cfe1e51cbb03774ffceec6e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 11 Oct 2016 11:44:34 +0200 Subject: [PATCH] fix exception type --- lib/base_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base_wizard.py b/lib/base_wizard.py index 17b1f7d83..e8caac218 100644 --- a/lib/base_wizard.py +++ b/lib/base_wizard.py @@ -285,7 +285,7 @@ class BaseWizard(object): self.load_2fa() self.run('on_restore_seed', seed, is_ext) else: - raise + raise BaseException('Unknown seed type', seed_type) def on_restore_bip39(self, seed, passphrase): f = lambda x: self.run('on_bip44', seed, passphrase, int(x))