From dd016479af1df2e9e856a60dfd92308dac84e4cc Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Tue, 28 May 2019 18:27:22 +0530 Subject: [PATCH] fix: Remove print statement --- .../doctype/request_for_quotation/request_for_quotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py index fc7dd72e557..a10ce46e33e 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py @@ -345,7 +345,7 @@ def get_item_from_material_requests_based_on_supplier(source_name, target_doc = @frappe.whitelist() def get_supplier_tag(): data = frappe.db.sql("select _user_tags from `tabSupplier`") - print("data:", data) + tags = [] for tag in data: tags += filter(bool, tag[0].split(","))