From db5973cf8771d519adecfb6b7d57b7700fc1c2d6 Mon Sep 17 00:00:00 2001 From: piair338 Date: Sun, 16 Oct 2022 11:49:06 +0000 Subject: [PATCH] small fix, i really should make some tests --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 58ee6c6..c5864eb 100644 --- a/main.py +++ b/main.py @@ -86,7 +86,7 @@ def edit_config_txt(ligne, contenu): for i in range(len(txt)) : name = txt[i].split(" = ")[0] if name == ligne: - txt[i] = name + " = " + contenu + txt[i] = name + " = " + str(contenu) f = open(config_path, "w") for i in txt :