I think this is the bug:
##
# Writes a string to the file object.
#
# This function writes a string to the file object and a new line is appended
# afterwards. It may optionally wraps the string for better readability.
#
# @File The file object to write
# @String
When I build a log file I noticed that it has line ending issues. Most of the
file seems to have 0x0d 0x0a, but some cases have 0x0a 0x0d 0x0a which my
editor thinks is a upside-down question mark. I’m guessing this is an OS
specific line ending issue with the Python code? As you can see in the