commit 5f86af15b807fee1f29a3a72ea3355dca5c78b3d
parent ee032e9158e7ba1c0938da41d41706f1da24232c
Author: ThomasV <thomasv@electrum.org>
Date: Mon, 1 Aug 2016 17:36:25 +0200
fix type
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/base_wizard.py b/lib/base_wizard.py
@@ -243,7 +243,7 @@ class BaseWizard(object):
try:
self.wallet.add_cosigner('x%d/'%i, text, password)
except BaseException as e:
- print "error:" + e
+ print "error:" + str(e)
i = self.wallet.get_missing_cosigner()
if i:
self.run('add_cosigners', password)