Skip to content

Commit

Permalink
pandas.core.common warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Apr 15, 2017
1 parent f65b7a6 commit 6933bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def wrapper(*args, **kwargs):
warnings.warn("pandas.core.common.{t} is deprecated. "
"These are not longer public API functions, "
"but can be imported from "
"pandas.core.typed.common.{t} instead".format(t=t),
"pandas.api.types.{t} instead".format(t=t),
DeprecationWarning, stacklevel=3)
return getattr(common, t)(*args, **kwargs)
return wrapper
Expand Down

0 comments on commit 6933bea

Please sign in to comment.