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.
This commit is contained in:
parent
61bd8b71ad
commit
a8b53deb75
1 changed files with 1 additions and 1 deletions
|
|
@ -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]:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue