Skip to content

Commit

Permalink
Change "pls" to "please" in error message (#16947)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanbato authored and jreback committed Jul 15, 2017
1 parent 80e40f8 commit 61f0c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3359,7 +3359,7 @@ def sort_index(self, axis=0, level=None, ascending=True, inplace=False,
inplace = validate_bool_kwarg(inplace, 'inplace')
# 10726
if by is not None:
warnings.warn("by argument to sort_index is deprecated, pls use "
warnings.warn("by argument to sort_index is deprecated, please use "
".sort_values(by=...)", FutureWarning, stacklevel=2)
if level is not None:
raise ValueError("unable to simultaneously sort by and level")
Expand Down

0 comments on commit 61f0c5c

Please sign in to comment.