From 2e4b4454b336ef740c12e4f9cb55c109a4a6c405 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Wed, 28 Jun 2017 17:31:44 +0530 Subject: [PATCH] [Fix] Module error during patch execution --- erpnext/patches/v7_2/contact_address_links.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/patches/v7_2/contact_address_links.py b/erpnext/patches/v7_2/contact_address_links.py index 07d9341f24..cf23e88798 100644 --- a/erpnext/patches/v7_2/contact_address_links.py +++ b/erpnext/patches/v7_2/contact_address_links.py @@ -4,8 +4,8 @@ from frappe.utils import update_progress_bar def execute(): frappe.reload_doc('core', 'doctype', 'dynamic_link') - frappe.reload_doc('email', 'doctype', 'contact') - frappe.reload_doc('contact', 'doctype', 'address') + frappe.reload_doc('contacts', 'doctype', 'contact') + frappe.reload_doc('contacts', 'doctype', 'address') map_fields = ( ('Customer', 'customer'), ('Supplier', 'supplier'),