From a8b53deb7553cf84c91908bec235c42c52d06cc0 Mon Sep 17 00:00:00 2001 From: ci2014 Date: Sat, 21 Sep 2019 15:41:54 +0200 Subject: [PATCH] Fix loop error in utils.py Property Setters got deleted on bench migrate and haven't been readded, because data was passed instead of d. Now it works. --- frappe/modules/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/modules/utils.py b/frappe/modules/utils.py index b06297023e..528ca6e88b 100644 --- a/frappe/modules/utils.py +++ b/frappe/modules/utils.py @@ -119,7 +119,7 @@ def sync_customizations_for_doctype(data, folder): custom_doctype, doctype_fieldname), doc_type) for d in data[key]: - _insert(data) + _insert(d) else: for d in data[key]: