From 2f4e87dd615ac05ebad90415c1961a7b23321f1a Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Sun, 15 Jun 2025 09:35:03 +0200 Subject: [PATCH] config.py: improve output --- internal_filesystem/lib/mpos/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/lib/mpos/config.py b/internal_filesystem/lib/mpos/config.py index 7e9a22cd..4e7307e8 100644 --- a/internal_filesystem/lib/mpos/config.py +++ b/internal_filesystem/lib/mpos/config.py @@ -30,7 +30,7 @@ class SharedPreferences: self.data = ujson.load(f) print(f"load: Loaded preferences: {self.data}") except Exception as e: - print(f"SharedPreferences.load found not preferences: {e}") + print(f"SharedPreferences.load didn't find preferences: {e}") self.data = {} def get_string(self, key, default=None):