From 0b2880de086158292512ed243bbe960f8fdd8978 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Wed, 1 Sep 2010 23:47:22 -0400 Subject: [PATCH] should be raising this exception --- world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world.py b/world.py index 2562e08..3b72f40 100644 --- a/world.py +++ b/world.py @@ -309,7 +309,7 @@ def generate_quadtree(chunkmap, colstart, colend, rowstart, rowend, prefix, quad # base case: just render the image img = render_worldtile(chunkmap, colstart, colend, rowstart, rowend) elif cols < 3 or rows < 5: - Exception("Something went wrong, this tile is too small. (Please send " + raise Exception("Something went wrong, this tile is too small. (Please send " "me the traceback so I can fix this)") else: # Recursively generate each quadrent for this tile