Skip to content

Commit a13e75c

Browse files
committed
Fix missing cameras error
1 parent c5b5671 commit a13e75c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cli/diagnose/html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def generateHtml(output, outputHtml):
184184
if len(output["cameras"]) == 0:
185185
camera = {
186186
"diagnosis": "error",
187-
"issues": ["Missing camera(s)."],
187+
"issues": [{"message": "Missing camera(s).", "diagnosis": "error"}],
188188
"images": []
189189
}
190190
s += generateSensor(camera, "Camera")

0 commit comments

Comments
 (0)