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.feeds+github@gmail.com>2020-10-18 13:23:51 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-10-18 13:23:51 +0200
commit4b1f22bf91ebd635eaccde670ddba2207b59713b (patch)
treea8fe446b4ca7e088ec928ffd0fbd1b49258c0910 /examples
parentdafe304b0060c2a189f19e11d8f0e755e3d0026c (diff)
Added error handling to guided.py when not selecting a profile to install.
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 f0a9d46b..aa5ec98d 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -115,7 +115,7 @@ while 1:
try:
if packages and archinstall.validate_package_list(packages):
break
- except RequirementError as e:
+ except archinstall.RequirementError as e:
print(e)
# TODO: Print a summary here of all the options chosen.