From 03f9c9fd5073792583955b80716f280d614f6efe Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Thu, 27 Aug 2015 12:19:29 +0000 Subject: [PATCH] cli: spawn: Fix error message when certidude signer is already running --- certidude/cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/certidude/cli.py b/certidude/cli.py index 77f9056..978eb98 100755 --- a/certidude/cli.py +++ b/certidude/cli.py @@ -124,7 +124,9 @@ def certidude_spawn(kill, no_interaction): sleep(1) except ProcessLookupError: pass + ca_loaded = True else: + ca_loaded = True continue child_pid = os.fork()