From 5f080e73237ed349b782e7fa310d6990501874d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 3 Nov 2015 13:04:14 +0100 Subject: [PATCH] fix call pdfid --- bin/filecheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/filecheck.py b/bin/filecheck.py index 7b96739..746f595 100644 --- a/bin/filecheck.py +++ b/bin/filecheck.py @@ -308,7 +308,7 @@ class KittenGroomerFileCheck(KittenGroomerBase): '''Way to process PDF file''' self.cur_file.add_log_details('processing_type', 'pdf') xmlDoc = PDFiD(self.cur_file.src_path) - oPDFiD = cPDFiD(xmlDoc) + oPDFiD = cPDFiD(xmlDoc, True) # TODO: other keywords? if oPDFiD.encrypt > 0: self.cur_file.add_log_details('encrypted', True)