mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-08 21:51:29 +00:00
Update of CHANGELOG
This commit is contained in:
2
thirdparty/odict/ordereddict.py
vendored
2
thirdparty/odict/ordereddict.py
vendored
@@ -120,7 +120,7 @@ class OrderedDict(dict, DictMixin):
|
||||
if isinstance(other, OrderedDict):
|
||||
if len(self) != len(other):
|
||||
return False
|
||||
for p, q in zip(self.items(), other.items()):
|
||||
for p, q in zip(self.items(), other.items()):
|
||||
if p != q:
|
||||
return False
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user