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 19:26:47 +0100
committerAnton Hvornum <anton@hvornum.se>2021-02-07 19:26:47 +0100
commit62a14d09455c7f7b1b6dbcf5810c8e452d2858d7 (patch)
treef90c1a6c5fd30d3059d19a2ca75fef46ab3f7c43 /examples
parentd184777a1b8a2cccddf6127d8ea7ce5a38d509f1 (diff)
Forgot importpath for exceptions
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 a9af24bd..c5e1474e 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -117,7 +117,7 @@ if archinstall.arguments['harddrive'].has_partitions():
raise archinstall.DiskError(f"The selected drive {archinstall.arguments['harddrive']} is not pre-mounted to {archinstall.storage['MOUNT_POINT']}. This is required when keeping a existing partitioning scheme.")
archinstall.log('Using existing partition table reported above.')
- except UnknownFilesystemFormat as err:
+ except archinstall.UnknownFilesystemFormat as err:
archinstall.log(f"Current filesystem is not supported: {err}", fg='red')
input(f"Do you wish to erase all data? (y/n):")