Skip to content

Commit

Permalink
MAINT: Remove extra the's in deprecation messages (#17222)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyoung authored Aug 11, 2017
1 parent a2c4543 commit d59a7b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pandas/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import warnings
warnings.warn("The pandas.json module is deprecated and will be "
"removed in a future version. Please import from "
"the pandas.io.json instead", FutureWarning, stacklevel=2)
"pandas.io.json instead", FutureWarning, stacklevel=2)
from pandas._libs.json import dumps, loads
2 changes: 1 addition & 1 deletion pandas/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
import warnings
warnings.warn("The pandas.parser module is deprecated and will be "
"removed in a future version. Please import from "
"the pandas.io.parser instead", FutureWarning, stacklevel=2)
"pandas.io.parser instead", FutureWarning, stacklevel=2)
from pandas._libs.parsers import na_values
from pandas.io.common import CParserError

0 comments on commit d59a7b5

Please sign in to comment.