index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-06-15 11:51:29 +0200 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-06-15 11:51:29 +0200 |
commit | 20e759d4cc60e78d8d769ec2239aab1b0233a59d (patch) | |
tree | fabd43c45ae3534176f0c307fa36a4e1a8d97c23 | |
parent | 0079f3d95c2f8ac99dfb608a3c71ddaefa0c74b1 (diff) |
-rw-r--r-- | archinstall/lib/disk.py | 2 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index c0d961b9..76871352 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -221,7 +221,7 @@ class BlockDevice: # I'm placing the encryption password on a BlockDevice level. def __repr__(self, *args, **kwargs): - return f"BlockDevice({self.device})" + return f"BlockDevice({self.device}, size={self.size}GB, free_space={'+'.join(part[2] for part in self.free_space)}, bus_type={self.bus_type})" def __iter__(self): for partition in self.partitions: |