Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-03-09 14:00:30 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-09 14:00:30 +0100
commitcf21b477640ec284f1355140694d22a2c9a21ac3 (patch)
tree768aaf071b4ce17843095c6b05d612fcb98778d7 /archinstall/lib/disk.py
parent3e9031821aa3bb6f85ce33405cf65aa2003d42d1 (diff)
Carried over the allow_formatting from the parent device of luks2() devices.
Diffstat (limited to 'archinstall/lib/disk.py')
-rw-r--r--archinstall/lib/disk.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index fe21dcf7..c05ba757 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -193,7 +193,6 @@ class Partition():
log(f'Trying to detect inner filesystem format on {self} (This might take a while)', level=LOG_LEVELS.Info)
from .luks import luks2
with luks2(self, 'luksloop', password, auto_unmount=True) as unlocked_device:
- print('Found:', unlocked_device.filesystem)
return unlocked_device.filesystem
def has_content(self):