fix base type of PrintError; it must be object, since it is inherited by wallets

This commit is contained in:
ThomasV 2015-10-01 12:38:46 +02:00
parent 87168282b9
commit 5a5cc97045
1 changed files with 1 additions and 1 deletions

View File

@ -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__