mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 14:16:08 -06:00
fix: minor compatibility issue with latest python versions
This commit is contained in:
parent
de3a419db4
commit
555ba070ad
1 changed files with 2 additions and 1 deletions
|
|
@ -432,7 +432,8 @@ class ClientTreeAll(Resource):
|
|||
redo = True
|
||||
while redo:
|
||||
redo = False
|
||||
for key, entry in tree.items().copy():
|
||||
# using a copy
|
||||
for key, entry in dict(tree).items():
|
||||
parent = entry["parent"]
|
||||
if not entry["children"]:
|
||||
entry["children"] = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue