index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Lord Anton Hvornum <anton.feeds@gmail.com> | 2020-11-08 15:28:49 +0100 |
---|---|---|
committer | Lord Anton Hvornum <anton.feeds@gmail.com> | 2020-11-08 15:28:49 +0100 |
commit | 67cdc890025dc0866f9c4c53a88dd5ee44555d38 (patch) | |
tree | b9d4125ce6fc562ace3daf8841d9d763dbbf8921 /archinstall/__main__.py | |
parent | 15e68ef49d07fca9e5890e10f90378ba25ed3d8f (diff) |
-rw-r--r-- | archinstall/__main__.py | 2 |
diff --git a/archinstall/__main__.py b/archinstall/__main__.py index eaf19398..4575a7e1 100644 --- a/archinstall/__main__.py +++ b/archinstall/__main__.py @@ -3,6 +3,7 @@ import archinstall import sys import os import glob +import traceback import urllib.request # TODO: Learn the dark arts of argparse... @@ -64,6 +65,7 @@ def run_as_a_module(): exec(profile) # Is this is very safe? except Exception as err: print(f"Error in profile {sys.argv[1]}: {err}") + traceback.print_exc(file=sys.stdout) sys.exit(1) # Should prompt for another profile path instead |