[GRASS-SVN] r60671 - grass/trunk/scripts/v.report
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Jun 2 09:40:29 PDT 2014
Author: hcho
Date: 2014-06-02 09:40:29 -0700 (Mon, 02 Jun 2014)
New Revision: 60671
Modified:
grass/trunk/scripts/v.report/v.report.py
Log:
v.report: tab to spaces
Modified: grass/trunk/scripts/v.report/v.report.py
===================================================================
--- grass/trunk/scripts/v.report/v.report.py 2014-06-02 15:59:27 UTC (rev 60670)
+++ grass/trunk/scripts/v.report/v.report.py 2014-06-02 16:40:29 UTC (rev 60671)
@@ -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