浏览代码

v.report: tab to spaces

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@60671 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho 11 年之前
父节点
当前提交
8783582173
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      scripts/v.report/v.report.py

+ 2 - 2
scripts/v.report/v.report.py

@@ -124,8 +124,8 @@ def main():
         records2.sort()
         records2.sort()
 
 
         #make pre-table
         #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 = []
         records3 = []
         for r2 in records2:
         for r2 in records2:
             records3.append(filter(lambda r1: r1[0] == r2[0], records1)[0] + r2[1:])
             records3.append(filter(lambda r1: r1[0] == r2[0], records1)[0] + r2[1:])