[GRASS-SVN] r44801 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Dec 30 06:44:20 EST 2010


Author: martinl
Date: 2010-12-30 03:44:20 -0800 (Thu, 30 Dec 2010)
New Revision: 44801

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI/menuform: ignore warning when parsing command


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py	2010-12-30 11:36:13 UTC (rev 44800)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py	2010-12-30 11:44:20 UTC (rev 44801)
@@ -1964,7 +1964,7 @@
     except OSError, e:
         raise gcmd.GException, _("Unable to fetch interface description for command '%s'. "
                                  "Details: %s") % (cmd, repr(e))
-    if cmderr:
+    if cmderr and cmderr[:7] != 'WARNING':
         raise gcmd.GException, _("Unable to fetch interface description for command '%s'. "
                                  "Details: %s") % (cmd, cmderr)
     



More information about the grass-commit mailing list