Quickfix revert native write

This commit is contained in:
Anton Vilhelm Ásgeirsson 2019-06-01 17:14:19 +00:00 committed by Oliver Blanthorn
parent 5ddce6763b
commit 4d7138abb5
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -468,7 +468,7 @@ def handleMessage(message):
reply["code"] = 2
elif cmd == "write":
with open(path, "w") as file:
with open(message["file"], "w") as file:
file.write(message["content"])
elif cmd == "writerc":