1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-10 12:33:48 -05:00

fix error messages

This commit is contained in:
Yamashita Yuu
2013-05-17 19:36:23 +09:00
parent c834f241a8
commit ac70eb701c

View File

@@ -698,7 +698,7 @@ build_package_verify_sqlite3() {
"$PYTHON_BIN" -c 'try: "$PYTHON_BIN" -c 'try:
import sqlite3 import sqlite3
except ImportError: except ImportError:
raise(ImportError("The Python ssl extension was not compiled. Missing the SQLite3 lib?")) raise(ImportError("The Python sqlite3 extension was not compiled. Missing the SQLite3 lib?"))
' >&4 2>&1 ' >&4 2>&1
} }
@@ -707,7 +707,7 @@ build_package_verify_zlib() {
"$PYTHON_BIN" -c 'try: "$PYTHON_BIN" -c 'try:
import zlib import zlib
except ImportError: except ImportError:
raise(ImportError("The Python ssl extension was not compiled. Missing the zlib?")) raise(ImportError("The Python zlib extension was not compiled. Missing the zlib?"))
' >&4 2>&1 ' >&4 2>&1
} }