From 34f62943d5db066870670d7efd48b2e44068077e Mon Sep 17 00:00:00 2001 From: Marcio Fernandes Date: Thu, 20 Jan 2022 14:03:07 +0000 Subject: [PATCH] . --- onlyone/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/onlyone/__init__.py b/onlyone/__init__.py index 75d30da..38a5e06 100644 --- a/onlyone/__init__.py +++ b/onlyone/__init__.py @@ -8,11 +8,11 @@ log = logging.getLogger(__name__) def __is_process(cmd:str, arr): item = " ".join(arr) - log.info("[onlyone][startprocess] -> " + item + "ends with " + cmd) + log.info("[onlyone][startprocess] -> " + item + " ends with " + cmd) if(item.endswith(cmd)): return True - log.info("[onlyone][startprocess] -> " + item + "ends with " + cmd.replace("\"", "")) + log.info("[onlyone][startprocess] -> " + item + " ends with " + cmd.replace("\"", "")) if(item.endswith(cmd.replace("\"", ""))): return True log.info("[onlyone][startprocess] -> " + item + " eq " + cmd)