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)