From da406d74ef8fd9024c5c76853d0b331de7801884 Mon Sep 17 00:00:00 2001 From: Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com> Date: Thu, 6 Feb 2020 12:55:21 +0530 Subject: [PATCH] fix: Remove debug param --- .../selling/report/territory_wise_sales/territory_wise_sales.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py index 656ff33ab6..f2db478686 100644 --- a/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py +++ b/erpnext/selling/report/territory_wise_sales/territory_wise_sales.py @@ -110,7 +110,7 @@ def get_opportunities(filters): return frappe.db.sql(""" SELECT name, territory, opportunity_amount FROM `tabOpportunity` {0} - """.format(conditions), filters, as_dict=1, debug=1) #nosec + """.format(conditions), filters, as_dict=1) #nosec def get_quotations(opportunities): if not opportunities: