fix missing whitespace in level_subtitle of customlocation
This commit is contained in:
parent
9590344be6
commit
9aab30611c
1 changed files with 1 additions and 1 deletions
|
@ -398,7 +398,7 @@ class CustomLocation:
|
||||||
@cached_property
|
@cached_property
|
||||||
def title_subtitle(self):
|
def title_subtitle(self):
|
||||||
grid_square = self.grid_square
|
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}
|
title = _('In %(level)s') % {'level': self.level.title}
|
||||||
if not self.space:
|
if not self.space:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue