remove spaces so config format is the same as normal file saving

This commit is contained in:
liamcottle 2025-02-03 01:25:27 +13:00
commit e1ae122297

View file

@ -805,7 +805,7 @@ class ReticulumMeshChat:
if sub_name in {"type", "port", "interface_enabled"}:
continue
if isinstance(sub_config, dict):
output.append(f" [[[ {sub_name} ]]]")
output.append(f" [[[{sub_name}]]]")
for sub_key, sub_value in sub_config.items():
output.append(f" {sub_key} = {sub_value}")
output.append("")