Skip to content

Commit ec1c92f

Browse files
committed
Update messages.
1 parent 07873d7 commit ec1c92f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/pyspark/sql/utils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ def require_minimum_pandas_version():
118118
from distutils.version import LooseVersion
119119
import pandas
120120
if LooseVersion(pandas.__version__) < LooseVersion('0.19.2'):
121-
raise ImportError("Pandas >= 0.19.2 must be installed on calling Python process: %s"
122-
% pandas.__version__)
121+
raise ImportError("Pandas >= 0.19.2 must be installed on calling Python process; "
122+
"however, your version was %s." % pandas.__version__)
123123

124124

125125
def require_minimum_pyarrow_version():
@@ -128,5 +128,5 @@ def require_minimum_pyarrow_version():
128128
from distutils.version import LooseVersion
129129
import pyarrow
130130
if LooseVersion(pyarrow.__version__) < LooseVersion('0.8.0'):
131-
raise ImportError("pyarrow >= 0.8.0 must be installed on calling Python process: %s"
132-
% pyarrow.__version__)
131+
raise ImportError("pyarrow >= 0.8.0 must be installed on calling Python process; "
132+
"however, your version was %s." % pyarrow.__version__)

0 commit comments

Comments
 (0)