From fed4baa1d5fd37cb2fa601f06b8f60f150e250fe Mon Sep 17 00:00:00 2001 From: Sanj Date: Wed, 31 Aug 2011 15:49:39 +0530 Subject: [PATCH] views.py: extra indent --- gazetteer/places/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gazetteer/places/views.py b/gazetteer/places/views.py index b0e625b..8369b99 100644 --- a/gazetteer/places/views.py +++ b/gazetteer/places/views.py @@ -28,7 +28,7 @@ def search_json(request): bbox = map(float, bbox.split(",")) except ValueError: bbox = None - return render_to_json_response({'error': 'bbox must be in the form: minx,miny,maxx,maxy'}) + return render_to_json_response({'error': 'bbox must be in the form: minx,miny,maxx,maxy'}) if not bbox and not search_term: return render_to_json_response({'error': 'must supply either a valid `bbox` or a `search` parameter'})