Skip to content

Commit 4afaad2

Browse files
committed
Fixed a bug that doesn't newline in the first line of plugins.txt.
1 parent 21a74fb commit 4afaad2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Mopy/bash/bosh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9204,7 +9204,7 @@ def save(self):
92049204
"""Write data to Plugins.txt file."""
92059205
self.selected.sort()
92069206
out = self.path.open('w')
9207-
out.write(r'# This file is used to tell Fallout3 which data files to load.\n\n')
9207+
out.write('# This file is used to tell Fallout3 which data files to load.\n\n')
92089208
for modName in self.selected:
92099209
out.write(Encode(modName.s+'\n','mbcs'))
92109210
out.close()

0 commit comments

Comments
 (0)