From 3c1ad67e36edfa1b8916c5774d57aa3113bf701f Mon Sep 17 00:00:00 2001 From: Lurenaud Date: Mon, 6 Feb 2023 11:58:43 +0100 Subject: [PATCH] show output of runSimple --- runSimple.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runSimple.py b/runSimple.py index 0295e53..46c1d2b 100644 --- a/runSimple.py +++ b/runSimple.py @@ -15,5 +15,5 @@ for i in files: input = str(i) commandstep = "PowerShell -NoProfile -ExecutionPolicy Bypass -File " + currentPath + "\export-step.ps1 " + input commandPdfDxf = "PowerShell -NoProfile -ExecutionPolicy Bypass -File " + currentPath + "\export-pdf-dxf.ps1 " + input - subprocess.run(commandstep, capture_output=True) - subprocess.run(commandPdfDxf, capture_output=True) + subprocess.run(commandstep) + subprocess.run(commandPdfDxf)