-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix recursive call to _substmerge (issue #60) #64
Conversation
for bd in b: | ||
if isinstance(bd, dict): | ||
a = self._deepmerge(a, bd) | ||
a = self._substmerge(a, bd) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zerwes The Same change is also needed in line 366 and that should be it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot @zerwes for taking the time. Looks good to me. Tested with my use cases.
Hello again @reddart |
Thank you @reddart ; a new release will be out soon |
issue #60