Commit cfee67ae authored by Claude Paroz's avatar Claude Paroz
Browse files

Added exception name in debug error message

This can help when some exception has no error message.
parent ced3e303
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -969,4 +969,4 @@ def pprint(value):
    try:
        return pformat(value)
    except Exception as e:
        return "Error in formatting: %s" % force_text(e, errors="replace")
        return "Error in formatting: %s: %s" % (e.__class__.__name__, force_text(e, errors="replace"))