From a5a7a34c2dbc77ffff2c7b274f8e0985a1e30851 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 15 Mar 2015 08:04:02 +0100 Subject: [PATCH] IOError: add file path to exception message --- lib/wallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index 997ccdf1..6aaf3f37 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -96,8 +96,8 @@ class WalletStorage(object): except: try: d = ast.literal_eval(data) #parse raw data from reading wallet file - except Exception: - raise IOError("Cannot read wallet file.") + except Exception as e: + raise IOError("Cannot read wallet file '%s'" % self.path) self.data = {} for key, value in d.items(): try: