From d2195190a29a44862223b85768220a41c124ebcf Mon Sep 17 00:00:00 2001 From: Marcus Yanello <94466282+MYanello@users.noreply.github.com> Date: Mon, 13 Jun 2022 20:56:29 -0500 Subject: [PATCH] Remove line break from custom command log --- core/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/app.py b/core/app.py index 3dfa3dcd..0d30680b 100644 --- a/core/app.py +++ b/core/app.py @@ -557,11 +557,11 @@ class DupeGuru(Broadcaster): path, exename = op.split(exepath) p = subprocess.Popen(exename + args, shell=True, cwd=path, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) output = p.stdout.read() - logging.info("Custom command %s %s:\n %s", exename, args, output) + logging.info("Custom command %s %s: %s", exename, args, output) else: p = subprocess.Popen(dupe_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) output = p.stdout.read() - logging.info("Custom command %s:\n %s", dupe_cmd, output) + logging.info("Custom command %s: %s", dupe_cmd, output) def load(self): """Load directory selection and ignore list from files in appdata.