Skip to content

Commit f274246

Browse files
committed
modify string of exception
1 parent 394777f commit f274246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

databricks/koalas/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6841,7 +6841,7 @@ def melt(self, id_vars=None, value_vars=None, var_name=None,
68416841
missing = [nec for nec in np.ravel(non_existence_col)
68426842
if nec not in raveled_column_index]
68436843
if len(missing) != 0:
6844-
raise KeyError("The following 'id_vars' are not present"
6844+
raise KeyError("The following 'value_vars' are not present"
68456845
" in the DataFrame: {}".format(missing))
68466846
else:
68476847
raise KeyError("None of [{}] are in the [columns]"

0 commit comments

Comments
 (0)