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@hvornum.se>2021-03-21 17:26:29 +0100
committerAnton Hvornum <anton@hvornum.se>2021-03-21 17:26:29 +0100
commit83c0ee4b225d3263b7aa564035130151f8163584 (patch)
treedd045e42df15bac68a81ca49a9c9a11b1618389f /archinstall
parent298ed315318e75fe546144b781e4f9e9031d72db (diff)
Removed some debugging output.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index efe3f50d..b66aa162 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -441,7 +441,6 @@ class Filesystem():
log(f'Adding partition to {self.blockdevice}', level=LOG_LEVELS.Info)
previous_partitions = self.blockdevice.partitions
- print(previous_partitions)
if format:
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {format} {start} {end}') == 0
else:
@@ -449,8 +448,6 @@ class Filesystem():
if partitioning:
start_wait = time.time()
- time.sleep(2)
- print(self.blockdevice.partitions)
while previous_partitions == self.blockdevice.partitions:
time.sleep(0.025) # Let the new partition come up in the kernel
if time.time() - start_wait > 10: