From 12562f4caeae35233db579432f7d3872ad3dc9e2 Mon Sep 17 00:00:00 2001 From: Daniel Girtler Date: Mon, 10 Mar 2025 22:02:26 +1100 Subject: [PATCH] Add newline after countdown (#3237) --- archinstall/lib/disk/device_handler.py | 1 + archinstall/lib/disk/filesystem.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/archinstall/lib/disk/device_handler.py b/archinstall/lib/disk/device_handler.py index e1c2f51d..4486f662 100644 --- a/archinstall/lib/disk/device_handler.py +++ b/archinstall/lib/disk/device_handler.py @@ -851,6 +851,7 @@ class DeviceHandler: auto-discovery tools don't recognize anything here. """ info(f'Wiping partitions and metadata: {block_device.device_info.path}') + for partition in block_device.partition_infos: luks = Luks2(partition.path) if luks.isLuks(): diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index 1a5722fa..c00f1578 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -352,7 +352,7 @@ class FilesystemHandler: Tui.print(out, row=0, endl='', clear_screen=True) try: - countdown = '\n5...4...3...2...1' + countdown = '\n5...4...3...2...1\n' for c in countdown: Tui.print(c, row=0, endl='') time.sleep(0.25)