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)