diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index d7f7941f017dec..c030647297b9e7 100644 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -1257,7 +1257,7 @@ def _getitem_tuple(self, tup: tuple): return self._getitem_tuple_same_dim(tup) def _get_label(self, label, axis: int): - # GH#5667 this will fail if the label is not present in the axis. + # GH#5567 this will fail if the label is not present in the axis. return self.obj.xs(label, axis=axis) def _handle_lowerdim_multi_index_axis0(self, tup: tuple):