From c23f97db91684e28a9012d69583cb0b2ec8c58f8 Mon Sep 17 00:00:00 2001 From: Tom Aarsen Date: Sat, 20 Aug 2022 09:57:47 +0000 Subject: [PATCH] Replace incorrect GH#5667 with GH#5567 --- 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 d7f7941f017de..c030647297b9e 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):