Fix quotes

This commit is contained in:
Ian McEwen
2024-04-16 14:58:50 -07:00
parent afbabf9538
commit 6c4dbb6fe6

View File

@@ -228,7 +228,7 @@ def setPref(config, comp_name, valStr) -> bool:
print(f"Adding '{val}' to the ignore_incoming list")
config_type.message_type.ignore_incoming.extend([val])
prefix = f"{".".join(name[0:-1])}." if config_type.message_type is not None else ""
prefix = f"{'.'.join(name[0:-1])}." if config_type.message_type is not None else ""
if mt_config.camel_case:
print(f"Set {prefix}{camel_name} to {valStr}")
else: