Author: sebastien.lelong
Date: Sun Apr 5 16:14:40 2009
New Revision: 917
Modified:
trunk/tools/jallib.py
Log:
ultimately at last finally fixed weird linefeed...
Modified: trunk/tools/jallib.py
==============================================================================
--- trunk/tools/jallib.py (original)
+++ trunk/tools/jallib.py Sun Apr 5 16:14:40 2009
@@ -510,7 +510,8 @@
# back to content without index
test = [l for i,l in test]
merged = merge_board_testfile(board,test)
- fout = file(outfile,"w")
+ # wb: write binary format, no ASCII/chars interpretation
+ fout = file(outfile,"wb")
fout.write(header)
fout.write(merged)
fout.close()
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jallib" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jallib?hl=en
-~----------~----~----~----~------~----~------~--~---