parameter markdown - correct reboot in tables

This commit is contained in:
Hamish Willee 2024-08-08 12:06:06 +10:00 committed by Mathieu Bresciani
parent a294e011ab
commit 718d308d91

View File

@ -81,7 +81,7 @@ If a listed parameter is missing from the Firmware see: [Finding/Updating Parame
if bitmask_list:
result += bitmask_output
# Format the ranges as a table.
result += f"Reboot | minValue | maxValue | increment | default | unit\n--- | --- | --- | --- | --- | ---\n{reboot_required} | {min_val} | {max_val} | {increment} | {def_val} | {unit} \n\n"
result += f"Reboot | minValue | maxValue | increment | default | unit\n--- | --- | --- | --- | --- | ---\n{'✓' if reboot_required else ' ' } | {min_val} | {max_val} | {increment} | {def_val} | {unit} \n\n"
self.output = result