tfix exception type - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 9598c6999ff9ed986cfe1e51cbb03774ffceec6e DIR parent 082f8e50f205df07291143fd8bc4cac1f34f475c HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 11 Oct 2016 11:44:34 +0200 fix exception type Diffstat: M lib/base_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/base_wizard.py b/lib/base_wizard.py t@@ -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))