From 5f86af15b807fee1f29a3a72ea3355dca5c78b3d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 1 Aug 2016 17:36:25 +0200 Subject: [PATCH] fix 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 b6d14ec0..6dd511e6 100644 --- 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)