From 7a1e573fdfae417723aebca717ec8064691fa7fe Mon Sep 17 00:00:00 2001 From: Marcin Koziej Date: Mon, 16 Dec 2013 09:40:49 +0100 Subject: [PATCH] use lists not tuples since tuples break things --- librarian/picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/librarian/picture.py b/librarian/picture.py index 7b98ff1..5d644d7 100644 --- a/librarian/picture.py +++ b/librarian/picture.py @@ -156,7 +156,7 @@ class WLPicture(object): area = sem.find("div[@type='rect']") if area is None: area = sem.find("div[@type='whole']") - return ((0, 0), (-1, -1)) + return [[0, 0], [-1, -1]] def has_all_props(node, props): return reduce(and_, map(lambda prop: prop in node.attrib, props)) @@ -165,7 +165,7 @@ class WLPicture(object): return None def n(prop): return int(area.get(prop)) - return ((n('x1'), n('y1')), (n('x2'), n('y2'))) + return [[n('x1'), n('y1')], [n('x2'), n('y2')]] def partiter(self): -- 2.20.1