From f3459fb252b46b386720c6602ff05cac91f713ee Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Sat, 21 Dec 2019 13:59:33 +1300 Subject: [PATCH] remove try to expose error --- core/utils/parsers.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/utils/parsers.py b/core/utils/parsers.py index 2cccffee..0cde26e4 100644 --- a/core/utils/parsers.py +++ b/core/utils/parsers.py @@ -174,7 +174,7 @@ def parse_args(client_agent, args): 'synods': parse_synods, } - try: - return clients[client_agent](args) - except Exception: - return None, None, None, None, None + #try: + return clients[client_agent](args) + #except Exception: + # return None, None, None, None, None