[GRASS-SVN] r62369 - grass/branches/releasebranch_7_0/scripts/v.report

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Oct 23 15:02:14 PDT 2014


Author: neteler
Date: 2014-10-23 15:02:14 -0700 (Thu, 23 Oct 2014)
New Revision: 62369

Modified:
   grass/branches/releasebranch_7_0/scripts/v.report/v.report.py
Log:
python indentation fix backport

Modified: grass/branches/releasebranch_7_0/scripts/v.report/v.report.py
===================================================================
--- grass/branches/releasebranch_7_0/scripts/v.report/v.report.py	2014-10-23 21:56:55 UTC (rev 62368)
+++ grass/branches/releasebranch_7_0/scripts/v.report/v.report.py	2014-10-23 22:02:14 UTC (rev 62369)
@@ -124,8 +124,8 @@
         records2.sort()
 
         #make pre-table
-	# len(records1) may not be the same as len(records2) because
-	# v.db.select can return attributes that are not linked to features.
+        # len(records1) may not be the same as len(records2) because
+        # v.db.select can return attributes that are not linked to features.
         records3 = []
         for r2 in records2:
             records3.append(filter(lambda r1: r1[0] == r2[0], records1)[0] + r2[1:])



More information about the grass-commit mailing list