[GRASS-SVN] r73904 - grass/trunk/temporal/t.info

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 2 12:06:25 PST 2019


Author: annakrat
Date: 2019-01-02 12:06:25 -0800 (Wed, 02 Jan 2019)
New Revision: 73904

Modified:
   grass/trunk/temporal/t.info/t.info.py
Log:
t.info: fix syntax error introduced earlier

Modified: grass/trunk/temporal/t.info/t.info.py
===================================================================
--- grass/trunk/temporal/t.info/t.info.py	2019-01-02 19:34:42 UTC (rev 73903)
+++ grass/trunk/temporal/t.info/t.info.py	2019-01-02 20:06:25 UTC (rev 73904)
@@ -105,7 +105,7 @@
     if name.find("@") >= 0:
         id_ = name
     else:
-        id_ = name + "@" + grass.gisenv()["MAPSET"])
+        id_ = name + "@" + grass.gisenv()["MAPSET"]
 
     dataset = tgis.dataset_factory(type_, id_)
 



More information about the grass-commit mailing list