Skip to content

Commit

Permalink
Fix typo in commit 354e191
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Hall committed Aug 8, 2023
1 parent da027eb commit 7b797b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gramps/gen/utils/grampslocale.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7b797b8

Please sign in to comment.