[mapserver-commits] r9230 - trunk/mapserver/mapscript/python

svn at osgeo.org svn at osgeo.org
Mon Jul 27 15:00:45 EDT 2009


Author: warmerdam
Date: 2009-07-27 15:00:45 -0400 (Mon, 27 Jul 2009)
New Revision: 9230

Modified:
   trunk/mapserver/mapscript/python/pymodule.i
Log:
fix an apparent indentation error in else statements

Modified: trunk/mapserver/mapscript/python/pymodule.i
===================================================================
--- trunk/mapserver/mapscript/python/pymodule.i	2009-07-26 11:44:57 UTC (rev 9229)
+++ trunk/mapserver/mapscript/python/pymodule.i	2009-07-27 19:00:45 UTC (rev 9230)
@@ -158,12 +158,12 @@
 
 %feature("pythonappend") layerObj %{if args and len(args)!=0:
 		self.p_map=args[0]
-	else:
+else:
 		self.p_map=None%}
 
 %feature("pythonappend") classObj %{if args and len(args)!=0:
 		self.p_layer=args[0]
-	else:
+else:
 		self.p_layer=None%}
 
 %feature("shadow") insertClass %{



More information about the mapserver-commits mailing list