Final verification of issue

This commit is contained in:
Anton Hvornum 2020-12-07 15:43:30 +01:00
parent 6af71eee30
commit 1aef9807f9
1 changed files with 3 additions and 0 deletions

View File

@ -226,6 +226,9 @@ class Filesystem():
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {format} {start} {end}') == 0
else:
partitioning = self.parted(f'{self.blockdevice.device} mkpart {type} {start} {end}') == 0
import time
time.sleep(5)
print('After:', print(self.blockdevice.partitions))
if partitioning: