# HG changeset patch # User Neil Muller # Date 1282741664 -7200 # Node ID 39f75faf16cb8fda82ef08783339f686ed5cd28d # Parent ebb859fd7ab94b90f0d34de6cb87b6edd9223be1 Add trailing , for copy-n-paste diff -r ebb859fd7ab9 -r 39f75faf16cb tools/rect_drawer.py --- a/tools/rect_drawer.py Wed Aug 25 15:47:28 2010 +0200 +++ b/tools/rect_drawer.py Wed Aug 25 15:07:44 2010 +0200 @@ -99,7 +99,7 @@ for (num, col) in enumerate(d): print 'Rect %d : ' % num for r in d[col]: - print ' (%d, %d, %d, %d)' % (r.x, r.y, r.w, r.h) + print ' (%d, %d, %d, %d),' % (r.x, r.y, r.w, r.h) print def mouse_down(self, e):