Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/__main__.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-11-08 14:27:53 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-11-08 14:27:53 +0100
commit3598e0bfa2098afb76f869574f31c6c50810898e (patch)
treef2b1209751eb78f2c9d01b772feddb19472650dd /archinstall/__main__.py
parent667e06c63e1e5207975b50b1eb4a83b84caf3d56 (diff)
Variable type-o issue.
Diffstat (limited to 'archinstall/__main__.py')
-rw-r--r--archinstall/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/__main__.py b/archinstall/__main__.py
index 63f87d24..eaf19398 100644
--- a/archinstall/__main__.py
+++ b/archinstall/__main__.py
@@ -63,7 +63,7 @@ def run_as_a_module():
try:
exec(profile) # Is this is very safe?
except Exception as err:
- print(f"Failed to run profile... {err}")
+ print(f"Error in profile {sys.argv[1]}: {err}")
sys.exit(1) # Should prompt for another profile path instead