From ea94bcc9164314a0fcf1646c0dc9171d0b2a5389 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Mon, 11 Oct 2010 20:56:43 -0400 Subject: [PATCH] removed your crazy semicolons. This ain't java =) --- quadtree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quadtree.py b/quadtree.py index 27e3472..746f381 100644 --- a/quadtree.py +++ b/quadtree.py @@ -134,13 +134,13 @@ class QuadtreeGen(object): # write out the default (empty, but documented) region table with open(os.path.join(self.destdir, "regions.js"), 'w') as output: - output.write('var regionData=[\n'); + output.write('var regionData=[\n') output.write(' // {"color": "#FFAA00", "opacity": 0.5, "closed": true, "path": [\n') output.write(' // {"x": 0, "y": 0, "z": 0},\n') output.write(' // {"x": 0, "y": 10, "z": 0},\n') output.write(' // {"x": 0, "y": 0, "z": 10}\n') output.write(' // ]},\n') - output.write('];'); + output.write('];') # Write a blank image blank = Image.new("RGBA", (1,1))