From 1e23f6eb8c2ff0c2936a18da17772cac59fa6589 Mon Sep 17 00:00:00 2001 From: Profitroll <47523801+profitrollgame@users.noreply.github.com> Date: Mon, 14 Nov 2022 19:24:22 +0100 Subject: [PATCH] Fixed useless \n in utils --- modules/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utils.py b/modules/utils.py index 17afbca..7d69a7c 100644 --- a/modules/utils.py +++ b/modules/utils.py @@ -60,7 +60,7 @@ def configSet(key: str, value, *args: str, file: str = "config"): if len(value) < 30: string += f'["{key}"] = "{value}"' else: - string += f'["{key}"] = """\n{value}\n"""' + string += f'["{key}"] = """{value}"""' else: string += f'["{key}"] = {value}' exec(string)