fix: Remove debug param

This commit is contained in:
Deepesh Garg 2020-02-06 12:55:21 +05:30 committed by GitHub
parent a4928f6f5b
commit da406d74ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: