Skip to content

Commit 21d2d49

Browse files
committed
Fix tests.
1 parent 9f67936 commit 21d2d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ 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")
121+
raise ImportError("Pandas >= 0.19.2 must be installed on calling Python process")
122122

123123

124124
def _require_minimum_pyarrow_version():

0 commit comments

Comments
 (0)