From 533d7c467980404031703d8ab04441979c4667ee Mon Sep 17 00:00:00 2001 From: joeflack4 Date: Thu, 9 Mar 2023 14:05:20 -0700 Subject: [PATCH] Bugfix: removed pdb breakpoint from exception handling --- ppp_web/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppp_web/views.py b/ppp_web/views.py index a30c465..91f270c 100644 --- a/ppp_web/views.py +++ b/ppp_web/views.py @@ -196,7 +196,7 @@ def _run_ppp_api(in_file_path, out_format, out_file_path): except OdkException as err: return err except Exception as err: - from pdb import set_trace; set_trace() + return err ''' @staticmethod def _build_ppp_ppp_tool_run_cmd(in_file_path, out_format, out_file_path):