Merge pull request #896 from JeLuF/0x0a0d

Remove superfluous CarriageReturn
This commit is contained in:
cmdr2 2023-02-17 16:06:29 +05:30 committed by GitHub
commit 130f9678b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,7 +114,7 @@ def setConfig(config):
if len(config_bat) > 0: if len(config_bat) > 0:
with open(config_bat_path, "w", encoding="utf-8") as f: with open(config_bat_path, "w", encoding="utf-8") as f:
f.write("\r\n".join(config_bat)) f.write("\n".join(config_bat))
except: except:
log.error(traceback.format_exc()) log.error(traceback.format_exc())