Add newline after countdown (#3237)
This commit is contained in:
parent
24f479892f
commit
12562f4cae
|
|
@ -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():
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue