Index: /issm/trunk-jpl/src/m/shp/shp2exp.py
===================================================================
--- /issm/trunk-jpl/src/m/shp/shp2exp.py	(revision 17611)
+++ /issm/trunk-jpl/src/m/shp/shp2exp.py	(revision 17612)
@@ -28,5 +28,6 @@
 	expdict=dict(closed=1,density=1)
 
-
+	x=[]
+	y=[]
 	for i in range(len(shp.shapes())):
 		geom=shp.shapes()[i].shapeType
@@ -46,6 +47,6 @@
 			expdict['nods']=len(x)
 		elif geom==1: # point
-			x=[p[0] for p in shp.shapes()[i].points]
-			y=[q[1] for q in shp.shapes()[i].points]
+			x.append(shp.shapes()[i].points[0][0])
+			y.append(shp.shapes()[i].points[0][1])
 			expdict['x']=x
 			expdict['y']=y
