fix display newline

This commit is contained in:
h8d13 2026-04-19 13:29:10 +02:00
parent e27dea00c2
commit 7435760f9d
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class LocaleConfiguration:
def preview(self) -> str:
output = '{}: {}\n'.format(tr('Keyboard layout'), self.kb_layout)
output += '{}: {}\n'.format(tr('Locale language'), self.sys_lang)
output += '{}: {}'.format(tr('Locale encoding'), self.sys_enc)
output += '{}: {}\n'.format(tr('Locale encoding'), self.sys_enc)
output += '{}: {}'.format(tr('Console font'), self.console_font)
return output