From ac70eb701c90b63891920358ec8a23ba5e3e6fe7 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Fri, 17 May 2013 19:36:23 +0900 Subject: [PATCH] fix error messages --- plugins/python-build/bin/python-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 4b4bad6e..cf9e8f8d 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -698,7 +698,7 @@ build_package_verify_sqlite3() { "$PYTHON_BIN" -c 'try: import sqlite3 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 } @@ -707,7 +707,7 @@ build_package_verify_zlib() { "$PYTHON_BIN" -c 'try: import zlib 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 }