Remove whitespace in timestamp (#4039)

This commit is contained in:
HADEON 2025-12-27 07:38:03 +01:00 committed by GitHub
parent 5fcea379b9
commit a4ad1b3724
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ def ask_post_installation(elapsed_time: float | None = None) -> PostInstallation
if elapsed_time is not None:
minutes = int(elapsed_time // 60)
seconds = int(elapsed_time % 60)
header += f' in {minutes}m {seconds}s' + '\n'
header += f' in {minutes}m{seconds}s' + '\n'
header += tr('What would you like to do next?') + '\n'
items = [MenuItem(action.value, value=action) for action in PostInstallationAction]