commit | 97977cdb4ba42a1a20a6e747cc5586ae92e8954b | [log] [tgz] |
---|---|---|
author | Ankush Menat <ankush@frappe.io> | Wed Sep 14 19:19:05 2022 +0530 |
committer | GitHub <noreply@github.com> | Wed Sep 14 19:19:05 2022 +0530 |
tree | 6fa9aa75c58e17154b3081a734c805ed5a2e5662 | |
parent | 87160c8d2f036eb07989ffc6e4b025ec04c7e132 [diff] |
fix: correct sql output format in CRM patch (#32213)
diff --git a/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py b/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py index 032aecc..ec72527 100644 --- a/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py +++ b/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py
@@ -12,7 +12,7 @@ frappe.qb.from_(dt) .select(dt.name, dt.notes, dt.modified_by, dt.modified) .where(dt.notes.isnotnull() & dt.notes != "") - ).run() + ).run(as_dict=True) for d in records: if strip_html(cstr(d.notes)).strip():