From be47451d7dbcee858bdb8c885ff8ae96451408c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BD=D0=B5=D0=B2=D0=BD=D0=B8=D0=BA=20UNIX=27=D0=BE?= =?UTF-8?q?=D0=B8=D0=B4=D0=B0?= <84270488+thm-unix@users.noreply.github.com> Date: Thu, 15 Feb 2024 01:35:30 +0300 Subject: [PATCH] Update update-config.py --- usr/share/plainDE/tools/update-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/share/plainDE/tools/update-config.py b/usr/share/plainDE/tools/update-config.py index 9044bb4..dda42f1 100644 --- a/usr/share/plainDE/tools/update-config.py +++ b/usr/share/plainDE/tools/update-config.py @@ -16,7 +16,7 @@ defaultConfig = json.load(cfgReader) for entry in defaultConfig: - if not entry.startswith('panel') + if not entry.startswith('panel'): if entry not in config: config[entry] = defaultConfig[entry] elif not isinstance(config[entry], type(defaultConfig[entry])):