From 98f47d1bd7f18edc096c73504e89e4408007473b Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Mon, 5 Sep 2016 21:26:16 +0530 Subject: [PATCH] Fix table_bbox when no tarea is given --- camelot/stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camelot/stream.py b/camelot/stream.py index 8ec3dc9..41da4ad 100644 --- a/camelot/stream.py +++ b/camelot/stream.py @@ -251,7 +251,7 @@ class Stream: y2 = int(y2) table_bbox[(x1, y2, x2, y1)] = None else: - table_bbox = {(0, height, width, 0): None} + table_bbox = {(0, 0, width, height): None} page = {} tables = {}