I observed the files created by ConfigObj.write() were missing the
newline character on the last line. Sure enough examination of the code
reveals something like:
=3D=3D=3D
Output =3D (expressionReturningANewlineChar).join(out)
.
.
.
Outfile.write(Output)
=3D=3D=3D
which will leave off the final newline. Am I missing something?
|