@@ -433,7 +433,7 @@ def _squash(self, vt_tuple, processed, sanity):
433433 # walk over dictionary of parsed sections, and check for marker conflicts (using .add())
434434 for key , value in processed .items ():
435435 if isinstance (value , NestedDict ):
436- tmp = self ._squash_netsed_dict (key , value , squashed , sanity , vt_tuple )
436+ tmp = self ._squash_nested_dict (key , value , squashed , sanity , vt_tuple )
437437 res_sections .update (tmp )
438438 elif key in self .VERSION_OPERATOR_VALUE_TYPES :
439439 self .log .debug ("Found VERSION_OPERATOR_VALUE_TYPES entry (%s)" % key )
@@ -453,7 +453,7 @@ def _squash(self, vt_tuple, processed, sanity):
453453 (processed , squashed .versions , squashed .result ))
454454 return squashed
455455
456- def _squash_netsed_dict (self , key , nested_dict , squashed , sanity , vt_tuple ):
456+ def _squash_nested_dict (self , key , nested_dict , squashed , sanity , vt_tuple ):
457457 """
458458 Squash NestedDict instance, returns dict with already squashed data
459459 from possible higher sections
0 commit comments