diff --git a/openmath/convert_pickle.py b/openmath/convert_pickle.py index d3afd73..749dcaa 100644 --- a/openmath/convert_pickle.py +++ b/openmath/convert_pickle.py @@ -125,7 +125,7 @@ # PickleConverter -- main class ############################################################################## -class PickleConverter: +class PickleConverter(object): importPythonBasics = {"list": lambda *args:list(args), "tuple": lambda *args:tuple(args), "none": None, "dict": lambda *args: dict(args), "true":True, "false": False, "getattr": lambda x,f: getattr(x,f)}