Skip to content

Commit 7435760

Browse files
committed
fix display newline
1 parent e27dea0 commit 7435760

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

archinstall/lib/models/locale.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def json(self) -> dict[str, str]:
3030
def preview(self) -> str:
3131
output = '{}: {}\n'.format(tr('Keyboard layout'), self.kb_layout)
3232
output += '{}: {}\n'.format(tr('Locale language'), self.sys_lang)
33-
output += '{}: {}'.format(tr('Locale encoding'), self.sys_enc)
33+
output += '{}: {}\n'.format(tr('Locale encoding'), self.sys_enc)
3434
output += '{}: {}'.format(tr('Console font'), self.console_font)
3535
return output
3636

0 commit comments

Comments
 (0)