Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-11-11 14:07:08 +0000
committerAnton Hvornum <anton.feeds@gmail.com>2021-11-11 14:07:08 +0000
commit15e569d0bd0c910bd65573007135ab10267d82bc (patch)
treee787ab493a21b1be44b94edb2a3785b2bad039c0 /archinstall
parent58099534404ca9c9ee68b9cbc06c3a8e739cbbcc (diff)
Adding in debugging
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk/filesystem.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py
index 0c535c7d..28df097e 100644
--- a/archinstall/lib/disk/filesystem.py
+++ b/archinstall/lib/disk/filesystem.py
@@ -165,6 +165,11 @@ class Filesystem:
new_uuid_set = (previous_partition_uuids ^ {partition.uuid for partition in self.blockdevice.partitions.values()})
if len(new_uuid_set) > 0:
new_uuid = new_uuid_set.pop()
+ print('Blockdevice:', self.blockdevice)
+ print('Partitions:', self.blockdevice.partitions)
+ print('Partition set:', new_uuid_set)
+ print('New UUID:', [new_uuid])
+ print('get_partition():', self.blockdevice.get_partition)
if new_uuid:
return self.blockdevice.get_partition(new_uuid)
else: