Index: /issm/trunk-jpl/src/m/shp/shp2exp.py
===================================================================
--- /issm/trunk-jpl/src/m/shp/shp2exp.py	(revision 19422)
+++ /issm/trunk-jpl/src/m/shp/shp2exp.py	(revision 19423)
@@ -35,13 +35,11 @@
 			tmpx=[p[0] for p in shp.shapes()[i].points]
 			tmpy=[q[1] for q in shp.shapes()[i].points]
-                        #x.extend(tmpx)
-                        #y.extend(tmpy)
-                        x.append(tmpx)
-                        y.append(tmpy)
+			x.append(tmpx)
+			y.append(tmpy)
 		elif geom==3: # line
-			x=[p[0] for p in shp.shapes()[i].points]
-			y=[q[1] for q in shp.shapes()[i].points]
-			x.append(x[0])
-			y.append(y[0])
+			tmpx=[p[0] for p in shp.shapes()[i].points]
+			tmpy=[q[1] for q in shp.shapes()[i].points]
+			x.append(tmpx)
+			y.append(tmpy)
 		elif geom==1: # point
 			x.append(shp.shapes()[i].points[0][0])
