Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index ffd3e044..7ffc866c 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -24,7 +24,7 @@ class BlockDevice():
def __iter__(self):
for partition in self.partitions:
- yield partition
+ yield self.partitions[partition]
def __getitem__(self, key, *args, **kwargs):
if key not in self.info: