[GRASS-SVN] r40326 - grass/trunk/scripts/v.krige

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Jan 8 16:13:40 EST 2010


Author: martinl
Date: 2010-01-08 16:13:38 -0500 (Fri, 08 Jan 2010)
New Revision: 40326

Modified:
   grass/trunk/scripts/v.krige/v.krige.py
Log:
v.krige: fix typo


Modified: grass/trunk/scripts/v.krige/v.krige.py
===================================================================
--- grass/trunk/scripts/v.krige/v.krige.py	2010-01-08 20:51:15 UTC (rev 40325)
+++ grass/trunk/scripts/v.krige/v.krige.py	2010-01-08 21:13:38 UTC (rev 40326)
@@ -412,7 +412,7 @@
     # @FIXME: it leaves a Rtmpxxxx folder into the make tempfolder and causes make complain. [markus]
     for each in ["gstat", "spgrass6", "maptools"]:
         if not robjects.r.require(each, quietly = True)[0]:
-            sys.exit(_("R package % is missing. Install it and re-run v.krige.") % each)
+            sys.exit(_("R package '%s' is missing. Install it and re-run v.krige.") % each)
     
 if __name__ == '__main__':
     if len(sys.argv) > 1:



More information about the grass-commit mailing list