Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r98008:789b5384030f
Date: 2019-11-10 08:38 +0100
http://bitbucket.org/pypy/pypy/changeset/789b5384030f/

Log:    Fix the error message: point to the right "cd" directory

diff --git a/lib_pypy/_cffi_ssl/_stdssl/__init__.py 
b/lib_pypy/_cffi_ssl/_stdssl/__init__.py
--- a/lib_pypy/_cffi_ssl/_stdssl/__init__.py
+++ b/lib_pypy/_cffi_ssl/_stdssl/__init__.py
@@ -10,7 +10,7 @@
     import os
     msg = "\n\nThe _ssl cffi module either doesn't exist or is incompatible 
with your machine's shared libraries.\n" + \
           "If you have a compiler installed, you can try to rebuild it by 
running:\n" + \
-          "cd %s\n" % 
os.path.abspath(os.path.dirname(os.path.dirname(__file__))) + \
+          "cd %s\n" % 
os.path.abspath(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))) + \
           "%s _ssl_build.py\n" % sys.executable
     raise ImportError(str(e) + msg)
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to