Skip to content

Commit 7d6fe87

Browse files
committed
Append to update/deferred.txt, rather than always overwriting.
1 parent b4d3356 commit 7d6fe87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renpy/common/00updater.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ init -1500 python in updater:
11091109
if os.path.exists(path):
11101110
self.log.write("could not rename file %s" % path.encode("utf-8"))
11111111

1112-
with open(DEFERRED_UPDATE_FILE, "wb") as f:
1112+
with open(DEFERRED_UPDATE_FILE, "ab") as f:
11131113
f.write("R " + path.encode("utf-8") + "\n")
11141114

11151115
continue

0 commit comments

Comments
 (0)