mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 14:16:08 -06:00
fix: issue with python 3.8
This commit is contained in:
parent
6f4321a9d4
commit
3bfc6c653d
1 changed files with 1 additions and 1 deletions
|
|
@ -1607,7 +1607,7 @@ class Config(File):
|
|||
self.options.clear()
|
||||
del self.options
|
||||
self.options = OrderedDict()
|
||||
for key in self.types.keys():
|
||||
for key in list(self.types.keys()):
|
||||
del self.types[key]
|
||||
self.types[key] = OrderedDict()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue