From f72f47f560ed47493c027c363cc76ac65fcbebcf Mon Sep 17 00:00:00 2001 From: Arne Brutschy Date: Thu, 25 Aug 2016 17:27:21 +0200 Subject: [PATCH] Removes reporting Exception.args in error. Fixes #46 --- jsonrpc/manager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jsonrpc/manager.py b/jsonrpc/manager.py index 0dac0b5..1c9f8aa 100644 --- a/jsonrpc/manager.py +++ b/jsonrpc/manager.py @@ -111,7 +111,6 @@ def response(**kwargs): except Exception as e: data = { "type": e.__class__.__name__, - "args": e.args, "message": str(e), } if isinstance(e, TypeError) and is_invalid_params(