From 78edd77ce1ccf91c049d76491d5c43a49c55b575 Mon Sep 17 00:00:00 2001 From: morpheus Date: Fri, 16 Sep 2022 17:45:18 +0200 Subject: [PATCH] fix issue with missing secnode --- commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands.py b/commands.py index 67c76a4..4a3b650 100644 --- a/commands.py +++ b/commands.py @@ -108,7 +108,8 @@ def frappy_start(**services): remove_cfg.append(secnode) if secnode: secnode('') - all_cfg[service] = secnode.get_info() + if secnode: + all_cfg[service] = secnode.get_info() # check cfg is not used twice for cfg in cfginfo.split(','):