fixed geoPoint bug, thanks Paolo Valleri

This commit is contained in:
mdipierro
2013-01-05 18:36:23 -06:00
parent 54866ecef5
commit b3e791b4d4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.4.1-alpha.2+timestamp.2013.01.03.21.29.36
Version 2.4.1-alpha.2+timestamp.2013.01.05.18.35.40
+1 -1
View File
@@ -9736,7 +9736,7 @@ DAL.Table = Table # was necessary in gluon/globals.py session.connect
# Geodal utils
################################################################################
def geoPoint(*line):
def geoPoint(x,y):
return "POINT (%f %f)" % (x,y)
def geoLine(*line):