From 10c5630e7abe43b77014ee35e55a6659cc61c2f9 Mon Sep 17 00:00:00 2001 From: Yogesh Ojha Date: Wed, 17 Apr 2024 19:00:42 +0530 Subject: [PATCH] remove debug print --- web/api/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/web/api/views.py b/web/api/views.py index 7c2c2ab52..5aa778692 100644 --- a/web/api/views.py +++ b/web/api/views.py @@ -1091,7 +1091,6 @@ def get(self, request): match = re.search(path_regex, output) if match: cms_json_path = match.group(1) - print(cms_json_path) if os.path.isfile(cms_json_path): cms_file_content = json.loads(open(cms_json_path, 'r').read()) if not cms_file_content.get('cms_id'):