Remove leftover pprint

This commit is contained in:
Anders Ingemann 2015-01-03 14:40:02 +01:00
parent 5383811ecc
commit eaf8f8ea0f

View file

@ -67,8 +67,6 @@ def deserialize(fq_classname, data):
state[key] = ser.recreate_classes(value)
except SecurityError as e:
msg = 'Unable to deserialize key `{key}\' on {class_name}'.format(key=key, class_name=fq_classname)
import pprint
msg += pprint.pformat(data)
raise Exception(msg, e)
instance = class_object.__new__(class_object)