From 01dab12fbc4e2bec6ecb22ad144b1ad143477401 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Mon, 17 Dec 2018 11:53:00 +0530 Subject: [PATCH] Fix SyntaxError --- camelot/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camelot/handlers.py b/camelot/handlers.py index 091e3b7..82b5c56 100644 --- a/camelot/handlers.py +++ b/camelot/handlers.py @@ -155,7 +155,7 @@ class PDFHandler(object): for p in self.pages] parser = Lattice(**kwargs) if flavor == 'lattice' else Stream(**kwargs) for p in pages: - t = parser.extract_tables(p, suppress_stdout=suppress_stdout + t = parser.extract_tables(p, suppress_stdout=suppress_stdout, extra_kwargs=extra_kwargs) tables.extend(t) return TableList(tables)