[GRASS-SVN] r67503 - grass/trunk/gui/wxpython/vdigit

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 6 04:34:07 PST 2016


Author: martinl
Date: 2016-01-06 04:34:07 -0800 (Wed, 06 Jan 2016)
New Revision: 67503

Modified:
   grass/trunk/gui/wxpython/vdigit/g.gui.vdigit.py
Log:
g.gui.vdigit: be less verbose when creating a new map

Modified: grass/trunk/gui/wxpython/vdigit/g.gui.vdigit.py
===================================================================
--- grass/trunk/gui/wxpython/vdigit/g.gui.vdigit.py	2016-01-06 12:11:39 UTC (rev 67502)
+++ grass/trunk/gui/wxpython/vdigit/g.gui.vdigit.py	2016-01-06 12:34:07 UTC (rev 67503)
@@ -89,9 +89,9 @@
             grass.fatal(_("Vector map <%s> not found in current mapset. "
                           "New vector map can be created by providing '-c' flag.") % options['map'])
         else:
-            grass.message(_("New vector map <%s> created") % options['map'])
+            grass.verbose(_("New vector map <%s> created") % options['map'])
             try:
-                grass.run_command('v.edit', map=options['map'], tool='create')
+                grass.run_command('v.edit', map=options['map'], tool='create', quiet=True)
             except CalledModuleError:
                 grass.fatal(_("Unable to create new vector map <%s>") % options['map'])
 



More information about the grass-commit mailing list