fix missing whitespace in level_subtitle of customlocation

This commit is contained in:
Laura Klünder 2024-12-19 11:03:28 +01:00
parent 9590344be6
commit 9aab30611c

View file

@ -398,7 +398,7 @@ class CustomLocation:
@cached_property
def title_subtitle(self):
grid_square = self.grid_square
level_subtitle = self.level.title if not grid_square else ','.join((grid_square, str(self.level.title)))
level_subtitle = self.level.title if not grid_square else ', '.join((grid_square, str(self.level.title)))
title = _('In %(level)s') % {'level': self.level.title}
if not self.space: