From 6fe2f208337db898d370d7a2374b416d998b5b5f Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 13 Jan 2018 15:31:10 +0100 Subject: Enforce HOME, TERM, and PATH env vars when running Instead of showing an ugly traceback --- poezio/poezio.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'poezio/poezio.py') diff --git a/poezio/poezio.py b/poezio/poezio.py index 51e10d1b..586130c8 100644 --- a/poezio/poezio.py +++ b/poezio/poezio.py @@ -37,6 +37,20 @@ Poezio is currently unable to read your input or draw its interface properly,\ so it will now exit.""") return False +def test_env(): + """ + Check if the environment has the right variables set + """ + unset = set() + for i in ('HOME', 'PATH', 'TERM'): + if not os.environ.get(i): + unset.add(i) + if unset: + variables = ', '.join('$%s' % i for i in unset) + print('ERROR: %s not set' % variables) + return False + return True + def main(): """ -- cgit v1.2.3