[GRASS-SVN] r54637 - grass/trunk/lib/python/temporal

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jan 15 05:00:15 PST 2013


Author: huhabla
Date: 2013-01-15 05:00:15 -0800 (Tue, 15 Jan 2013)
New Revision: 54637

Modified:
   grass/trunk/lib/python/temporal/space_time_datasets_tools.py
Log:
Fixed wrong error message


Modified: grass/trunk/lib/python/temporal/space_time_datasets_tools.py
===================================================================
--- grass/trunk/lib/python/temporal/space_time_datasets_tools.py	2013-01-15 11:13:39 UTC (rev 54636)
+++ grass/trunk/lib/python/temporal/space_time_datasets_tools.py	2013-01-15 13:00:15 UTC (rev 54637)
@@ -65,7 +65,7 @@
     end_time_in_file = False
 
     if maps and file:
-        core.fatal(_("%s= and %s= are mutually exclusive") % ("input", "file"))
+        core.fatal(_("%s= and %s= are mutually exclusive") % ("maps", "file"))
 
     if end and increment:
         core.fatal(_("%s= and %s= are mutually exclusive") % (
@@ -76,7 +76,7 @@
                                                       "end_time"))
 
     if not maps and not file:
-        core.fatal(_("Please specify %s= or %s=") % ("input", "file"))
+        core.fatal(_("Please specify %s= or %s=") % ("maps", "file"))
 
     # We may need the mapset
     mapset = core.gisenv()["MAPSET"]



More information about the grass-commit mailing list