diff -r a1d982e68edf -r de5c4effc747 E5XML/XMLWriterBase.py --- a/E5XML/XMLWriterBase.py Thu May 13 14:36:46 2010 +0200 +++ b/E5XML/XMLWriterBase.py Fri May 14 12:31:34 2010 +0200 @@ -7,7 +7,6 @@ Module implementing a base class for all of eric5s XML writers. """ -import os import pickle import base64 @@ -50,7 +49,7 @@ @param newline flag indicating a linebreak """ self.pf.write("%s%s" % (s, - newline and os.linesep or "")) + newline and "\n" or "")) def writeXML(self): """