[GRASS-SVN] r38603 - grass/trunk/scripts/v.report

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Aug 3 12:49:31 EDT 2009


Author: martinl
Date: 2009-08-03 12:49:30 -0400 (Mon, 03 Aug 2009)
New Revision: 38603

Modified:
   grass/trunk/scripts/v.report/v.report.py
Log:
fix multiline message


Modified: grass/trunk/scripts/v.report/v.report.py
===================================================================
--- grass/trunk/scripts/v.report/v.report.py	2009-08-03 16:32:35 UTC (rev 38602)
+++ grass/trunk/scripts/v.report/v.report.py	2009-08-03 16:49:30 UTC (rev 38603)
@@ -120,9 +120,9 @@
 	if len(records1) == 0:
             try:
                 f = grass.vector_db(map = mapname)[int(layer)]
-                grass.fatal(_("There is a table connected to input vector map '%s', but") +
-                            "there are no categories present in the key column '%s'. Consider using" +
-                            "v.to.db to correct this." % (mapname, f['key']))
+                grass.fatal(_("There is a table connected to input vector map '%s', but"
+                              "there are no categories present in the key column '%s'. Consider using"
+                              "v.to.db to correct this.") % (mapname, f['key']))
             except KeyError:
                 pass
 



More information about the grass-commit mailing list