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@hvornum.se>2021-07-04 15:15:07 +0200
committerAnton Hvornum <anton@hvornum.se>2021-07-04 15:15:07 +0200
commitf2b0fcc6524226c99e38edd3fa03a3a68af33738 (patch)
treee767632447d5b868610a4aa0df1e793503e9cfeb /archinstall/lib/disk.py
parent57bad26553166d6c1bfa81576089a29d56c970a7 (diff)
Added a filesystem check when marking for formatting, this should ensure that encrypted volumes get a proper filesystem without having to go through an extra step of selecting filesystem.
Diffstat (limited to 'archinstall/lib/disk.py')
-rw-r--r--archinstall/lib/disk.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index d6f6ebde..99e6da19 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -395,6 +395,7 @@ class BlockDevice:
for partition in self:
if partition.uuid == uuid:
return partition
+ print('Returning False on get_partition()')
class Partition: