From: Marcin Koziej <marcin@lolownia.org>
Date: Mon, 16 Dec 2013 08:40:49 +0000 (+0100)
Subject: use lists not tuples since tuples break things
X-Git-Tag: 1.7~120
X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/7a1e573fdfae417723aebca717ec8064691fa7fe?ds=inline

use lists not tuples since tuples break things
---

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):