Missing .format() on 'use entire disk' step
This commit is contained in:
parent
20e759d4cc
commit
e965eaf546
|
|
@ -810,6 +810,7 @@ class Filesystem:
|
||||||
if not partition.get('filesystem'):
|
if not partition.get('filesystem'):
|
||||||
partition['filesystem'] = {}
|
partition['filesystem'] = {}
|
||||||
|
|
||||||
|
if not partition['filesystem'].get('format', False):
|
||||||
while True:
|
while True:
|
||||||
partition['filesystem']['format'] = input(f"Enter a valid fs-type for newly encrypted partition {partition['filesystem']['format']}: ").strip()
|
partition['filesystem']['format'] = input(f"Enter a valid fs-type for newly encrypted partition {partition['filesystem']['format']}: ").strip()
|
||||||
if not partition['filesystem']['format'] or valid_fs_type(partition['filesystem']['format']) is False:
|
if not partition['filesystem']['format'] or valid_fs_type(partition['filesystem']['format']) is False:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue