Skip to content

Commit 8a691ed

Browse files
authored
Updating to ensure mapping is pulled from repo (#82)
1 parent f027616 commit 8a691ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tailor_distro/create_recipes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def nested_update(d, u):
1717
d = deepcopy(d)
1818
for k, v in u.items():
19-
if isinstance(v, collections.Mapping):
19+
if isinstance(v, collections.abc.Mapping):
2020
d[k] = nested_update(d.get(k, {}), v)
2121
else:
2222
d[k] = v

0 commit comments

Comments
 (0)