[GRASS-SVN] r71832 - grass/trunk/lib/init

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Nov 25 17:11:43 PST 2017


Author: wenzeslaus
Date: 2017-11-25 17:11:43 -0800 (Sat, 25 Nov 2017)
New Revision: 71832

Modified:
   grass/trunk/lib/init/grass.py
Log:
init: use spaces consistently (no mixed tabs), required in Python 3 (PEP8 E101, W191, see #2708)

Modified: grass/trunk/lib/init/grass.py
===================================================================
--- grass/trunk/lib/init/grass.py	2017-11-25 22:58:46 UTC (rev 71831)
+++ grass/trunk/lib/init/grass.py	2017-11-26 01:11:43 UTC (rev 71832)
@@ -1710,7 +1710,7 @@
             filerev.close()
             sys.stdout.write("%s\n" % val[0].split(':')[1].rstrip('$"\n').strip())
         elif arg == 'version':
-			sys.stdout.write("%s\n" % grass_version)
+            sys.stdout.write("%s\n" % grass_version)
         else:
             message(_("Parameter <%s> not supported") % arg)
 



More information about the grass-commit mailing list