Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r2932:bac0dd1b86f9
Date: 2017-05-09 18:31 +0200
http://bitbucket.org/cffi/cffi/changeset/bac0dd1b86f9/

Log:    Py3 compat

diff --git a/cffi/recompiler.py b/cffi/recompiler.py
--- a/cffi/recompiler.py
+++ b/cffi/recompiler.py
@@ -1484,7 +1484,7 @@
                         msg = 'the current directory is'
                     else:
                         msg = 'setting the current directory to'
-                    print '%s %r' % (msg, os.path.abspath(tmpdir))
+                    print('%s %r' % (msg, os.path.abspath(tmpdir)))
                 os.chdir(tmpdir)
                 outputfilename = ffiplatform.compile('.', ext,
                                                      compiler_verbose, debug)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to