fix dictionary parsing in ghostrequest.py

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-08-02 16:44:24 -07:00
parent 1c0d6d34b2
commit a0fd568fc6

View File

@@ -492,7 +492,7 @@ class GhostRequest:
text = 'Testbed: %s<br />' % testbeds[0]
raw_test_tags = list()
test_tag_table = ''
for tag in list(set(test_tag.values())):
for tag in test_tag.values():
for value in tag:
raw_test_tags.append(value)
for value in list(set(raw_test_tags)):