Parcourir la source

v.report: tab to spaces

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@60671 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho il y a 11 ans
Parent
commit
8783582173
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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()
 
         #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:])