From 6c4dbb6fe6f29d93c354d71d34910a57592afe24 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Tue, 16 Apr 2024 14:58:50 -0700 Subject: [PATCH] Fix quotes --- meshtastic/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 95c8b53..2d9e91e 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -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: