Author: Matti Picus <matti.pi...@gmail.com>
Branch: py3.5
Changeset: r94058:b13c7b3ad6ee
Date: 2018-03-21 22:39 +0200
http://bitbucket.org/pypy/pypy/changeset/b13c7b3ad6ee/

Log:    fix

diff --git a/lib-python/3/distutils/msvc9compiler.py 
b/lib-python/3/distutils/msvc9compiler.py
--- a/lib-python/3/distutils/msvc9compiler.py
+++ b/lib-python/3/distutils/msvc9compiler.py
@@ -278,7 +278,7 @@
         stdout = stdout.decode("mbcs")
         log.debug('-'*30)
         log.debug(stderr.decode('mbcs'))
-        log.debug(stdout.decode('mbcs'))
+        log.debug(stdout)
         log.debug('-'*30)
         for line in stdout.split("\n"):
             line = Reg.convert_mbcs(line)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to