commit | dd016479af1df2e9e856a60dfd92308dac84e4cc | [log] [tgz] |
---|---|---|
author | Faris Ansari <netchampfaris@users.noreply.github.com> | Tue May 28 18:27:22 2019 +0530 |
committer | GitHub <noreply@github.com> | Tue May 28 18:27:22 2019 +0530 |
tree | 81a15bb7259fc3efd4fedb5f22fb5c6cd238e4bb | |
parent | 5afe9f22005ee300bb4e925cfd0b658cb0a0eb07 [diff] |
fix: Remove print statement
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 fc7dd72..a10ce46 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 @@ @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(","))