From 7b797b8438d71d2acb3fec4337e1ee764d15bb16 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 8 Aug 2023 17:11:59 +0100 Subject: [PATCH] Fix typo in commit 354e191ea0b7f8ebc93c5bd5a0618fedf6385186 --- gramps/gen/utils/grampslocale.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/utils/grampslocale.py b/gramps/gen/utils/grampslocale.py index 4a6207588dc..abc3ff34be8 100644 --- a/gramps/gen/utils/grampslocale.py +++ b/gramps/gen/utils/grampslocale.py @@ -595,7 +595,7 @@ def date_displayer(self): self._dd = displayers[self.calendar[:2]](val) elif self != _first and _first.calendar in displayers: self._dd = displayers[_first.calendar](val, blocale=self) - elif self != _first and _first.calendar and q_first.calendar[:2] in displayers: + elif self != _first and _first.calendar and _first.calendar[:2] in displayers: self._dd = displayers[_first.calendar[:2]](val, blocale=self) else: self._dd = displayers["C"](val, blocale=self)