mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-28 12:03:45 +00:00
commit
c8787e0404
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ class AttribDict(dict):
|
|||
for attr in dir(self):
|
||||
if not attr.startswith('_'):
|
||||
value = getattr(self, attr)
|
||||
if not isinstance(value, (types.BuiltinFunctionType, types.BuiltinFunctionType, types.FunctionType, types.MethodType)):
|
||||
if not isinstance(value, (types.BuiltinFunctionType, types.FunctionType, types.MethodType)):
|
||||
setattr(retVal, attr, copy.deepcopy(value, memo))
|
||||
|
||||
for key, value in self.items():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue