Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-02-07 13:39:39 +0100
committerAnton Hvornum <anton@hvornum.se>2021-02-07 13:39:39 +0100
commit7123da1c564bd88f9c3101c6e5e1773d0d2cdf62 (patch)
treedafcd026c498d8495762da69e288e610b768bf21 /examples
parent53cdb607bc9204b69d3f1aac42baea5ddcb94c12 (diff)
Threw the wrong exception
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index b6c6dd45..ac1e7fe2 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -100,7 +100,7 @@ if harddrive.has_partitions():
# Make sure that it's the selected drive mounted under /mnt
# That way, we can rely on genfstab and some manual post-installation steps.
if harddrive.has_mount_point(archinstall.storage['MOUNT_POINT']) is False:
- raise archinstall.DiskException(f"The selected drive {harddrive} is not pre-mounted to {archinstall.storage['MOUNT_POINT']}. This is required when keeping a existing partitioning scheme.")
+ raise archinstall.DiskError(f"The selected drive {harddrive} is not pre-mounted to {archinstall.storage['MOUNT_POINT']}. This is required when keeping a existing partitioning scheme.")
else:
print('Formatting woop woop!')
exit(1)