From ebb1652e79a4e008d4b88672b622cde077ac939f Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Tue, 28 Apr 2020 13:38:16 +0200 Subject: [PATCH] Handle KeyError --- install.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install.py b/install.py index b322176..a7478eb 100755 --- a/install.py +++ b/install.py @@ -284,7 +284,12 @@ class Installer: ui.info(ui.green, program) ui.info("-" * len(program)) - todo = self.conf[program] + + try: + todo = self.conf[program] + except KeyError: + ui.fatal("'{}' wasn't found in conf file.".format(program)) + for action in todo: name = list(action.keys())[0] params = action[name]