Index: /issm/trunk-jpl/src/m/shp/shp2exp.py
===================================================================
--- /issm/trunk-jpl/src/m/shp/shp2exp.py	(revision 21658)
+++ /issm/trunk-jpl/src/m/shp/shp2exp.py	(revision 21659)
@@ -33,5 +33,5 @@
 		geom=shp.shapes()[i].shapeType
 		if geom==5: # polygon
-         expdict['closed']=1
+			expdict['closed']=1
 			tmpx=[p[0] for p in shp.shapes()[i].points]
 			tmpy=[q[1] for q in shp.shapes()[i].points]
@@ -39,5 +39,5 @@
 			y.append(tmpy)
 		elif geom==3: # line
-         expdict['closed']=0
+			expdict['closed']=0
 			tmpx=[p[0] for p in shp.shapes()[i].points]
 			tmpy=[q[1] for q in shp.shapes()[i].points]
@@ -45,5 +45,5 @@
 			y.append(tmpy)
 		elif geom==1: # point
-         expdict['closed']=0
+			expdict['closed']=0
 			x.append(shp.shapes()[i].points[0][0])
 			y.append(shp.shapes()[i].points[0][1])
