From 5a5cc9704586277fdbbcb401ffc3fbb0dc41b34d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 1 Oct 2015 12:38:46 +0200 Subject: [PATCH] fix base type of PrintError; it must be object, since it is inherited by wallets --- lib/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.py b/lib/util.py index 3771f84f5..c63b71b66 100644 --- a/lib/util.py +++ b/lib/util.py @@ -25,7 +25,7 @@ class MyEncoder(json.JSONEncoder): return obj.as_dict() return super(MyEncoder, self).default(obj) -class PrintError: +class PrintError(object): '''A handy base class''' def diagnostic_name(self): return self.__class__.__name__