From 9c3ed9dd2ab702bd41391194e8bfce8e37672350 Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Fri, 28 Jul 2023 18:15:03 +0200 Subject: [PATCH] Correct a typo --- bnp_pdf_statement_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bnp_pdf_statement_parser.py b/bnp_pdf_statement_parser.py index 72bcfd8..a80c066 100755 --- a/bnp_pdf_statement_parser.py +++ b/bnp_pdf_statement_parser.py @@ -20,7 +20,7 @@ Assuming file hierarchy like: ''' def execute(command): - return subprocess.check_output(command, shell).decode('utf-8') + return subprocess.check_output(command).decode('utf-8') def getTextFromPdf(pdfPath): return execute(['pdftotext', '-raw', pdfPath, '-')