From 1c44ba6f88895d92bd2f99cf99957df1eb489be9 Mon Sep 17 00:00:00 2001 From: Chris Kerr Date: Tue, 13 Jun 2017 18:41:38 +0200 Subject: [PATCH] Update link in the deprecation message for .ix The anchor on the indexing.html page has changed, this updates the link in the warning message --- pandas/core/indexing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index a01e3dc46dfe9..95dccfc43e30e 100755 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -1288,7 +1288,7 @@ def __init__(self, obj, name): .iloc for positional indexing See the documentation here: -http://pandas.pydata.org/pandas-docs/stable/indexing.html#deprecate_ix""" +http://pandas.pydata.org/pandas-docs/stable/indexing.html#ix-indexer-is-deprecated""" warnings.warn(_ix_deprecation_warning, DeprecationWarning, stacklevel=3)