Viktor Ferenczi <[EMAIL PROTECTED]> added the comment:

Fixed by appending the b (bytes) prefix to three string literals
concatenated to cfgdata in
C:\python30\lib\distutils\command\bdist_wininst.py:

Line #262:

        # Append the pre-install script
        cfgdata = cfgdata + b"\0"
        if self.pre_install_script:
            script_data = open(self.pre_install_script, "r").read()
            cfgdata = cfgdata + script_data + b"\n\0"
        else:
            # empty pre-install script
            cfgdata = cfgdata + b"\0"
        file.write(cfgdata)

Sorry for the source code fragment. I'll try to submit a patch instead
next time.

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3160>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to