[GRASS-SVN] r57790 - grass/branches/releasebranch_6_4/imagery/i.group

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Sep 22 00:28:09 PDT 2013


Author: hamish
Date: 2013-09-22 00:28:09 -0700 (Sun, 22 Sep 2013)
New Revision: 57790

Modified:
   grass/branches/releasebranch_6_4/imagery/i.group/main.c
Log:
tweak wording in module descr, don't show done msg when printing output in shell script style (merge from devbr6)

Modified: grass/branches/releasebranch_6_4/imagery/i.group/main.c
===================================================================
--- grass/branches/releasebranch_6_4/imagery/i.group/main.c	2013-09-22 07:28:00 UTC (rev 57789)
+++ grass/branches/releasebranch_6_4/imagery/i.group/main.c	2013-09-22 07:28:09 UTC (rev 57790)
@@ -11,7 +11,7 @@
  *               Hamish Bowman <hamish_b yahoo.com>
  * PURPOSE:      collect raster map layers into an imagery group by assigning 
  *               them to user-named subgroups or other groups
- * COPYRIGHT:    (C) 2001-2007 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2001-2013 by the GRASS Development Team
  *
  *               This program is free software under the GNU General Public
  *               License (>=v2). Read the file COPYING that comes with GRASS
@@ -51,7 +51,7 @@
     module = G_define_module();
     module->keywords = _("imagery, map management");
     module->description =
-	_("Creates, edits, and lists groups and subgroups of imagery files.");
+	_("Creates, edits, and lists groups and subgroups of imagery data.");
 
     /* Get Args */
     grp = G_define_standard_option(G_OPT_I_GROUP);
@@ -181,7 +181,8 @@
 	}
     }
 
-    G_done_msg(" ");
+    if (!simple_flag->answer)
+	G_done_msg("");
 
     return EXIT_SUCCESS;
 }



More information about the grass-commit mailing list