mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
removed extra quote from query
This commit is contained in:
@@ -5,7 +5,7 @@ from __future__ import unicode_literals
|
|||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
doctypes = frappe.db.sql_list(""""select parent from tabDocField where fieldname = 'in_words'""")
|
doctypes = frappe.db.sql_list("""select parent from tabDocField where fieldname = 'in_words'""")
|
||||||
|
|
||||||
for dt in doctypes:
|
for dt in doctypes:
|
||||||
for fieldname in ("in_words", "base_in_words"):
|
for fieldname in ("in_words", "base_in_words"):
|
||||||
|
|||||||
Reference in New Issue
Block a user