From: Michael Orlitzky Date: Mon, 5 Apr 2010 18:35:44 +0000 (-0400) Subject: Merge branch 'master' of michael.orlitzky.com:/var/www/orlitzky.com/michael/public... X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=80faf784b8045a72f0ca7c3c0d07b2b0686c8094;hp=1717bafe07c9f51e0fae441db35b2d03d893cd3e Merge branch 'master' of michael.orlitzky.com:/var/www/orlitzky.com/michael/public/git/census-tools --- diff --git a/www/maps/maps/controllers/directions.py b/www/maps/maps/controllers/directions.py index 0cd278f..d1c0d15 100644 --- a/www/maps/maps/controllers/directions.py +++ b/www/maps/maps/controllers/directions.py @@ -60,9 +60,9 @@ class DirectionsController(BaseController): for step in route['steps']: for coord in step['lat_lngs']: - coords.text += str(coord.values()[1]) - coords.text += ',' coords.text += str(coord.values()[0]) + coords.text += ',' + coords.text += str(coord.values()[1]) coords.text += ',0 ' ls.children.append(coords)