From 8f110f50c522a278b0dc7dd8e37fe7f2bbafc855 Mon Sep 17 00:00:00 2001 From: Franck Dary <franck.dary@lis-lab.fr> Date: Thu, 10 Dec 2020 15:38:30 +0100 Subject: [PATCH] Don't print errors of getRawText.py --- UD_any/data/getRawText.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UD_any/data/getRawText.py b/UD_any/data/getRawText.py index 1bdecba..0b2ff8e 100755 --- a/UD_any/data/getRawText.py +++ b/UD_any/data/getRawText.py @@ -20,5 +20,5 @@ if __name__ == "__main__" : continue targetFile = open(target, "w") command = sys.argv[1] + " " + pathToFile - p = subprocess.Popen(command, stdout=targetFile, stderr=sys.stderr, shell=True) + p = subprocess.Popen(command, stdout=targetFile, shell=True) p.wait() -- GitLab