mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-10-30 18:27:53 +00:00
fix dictionary parsing in ghostrequest.py
Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
@@ -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)):
|
||||
|
||||
Reference in New Issue
Block a user