Merge pull request #101 from isce-framework/python38

Adjustments for python 3.8 compatibility
LT1AB
piyushrpt 2020-03-18 14:08:30 -07:00 committed by GitHub
commit 0239f678de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class DictUtils:
spare = []
# dict1 is the one to update
for k2,v2 in dict2.items():
for k2,v2 in dict(dict2).items():
if DictUtils.keyIsIn(k2,dict1):
if isinstance(v2,dict):#if is a dict keep going down the node
DictUtils.updateDictionary(dict1[k2],v2,replace,spare)