[GRASS-SVN] r50600 - grass/branches/releasebranch_6_4/gui/wxpython/tools

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jan 31 19:41:51 EST 2012


Author: martinl
Date: 2012-01-31 16:41:51 -0800 (Tue, 31 Jan 2012)
New Revision: 50600

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/tools/update_menudata.py
Log:
wxGUI: fix update_menudata


Modified: grass/branches/releasebranch_6_4/gui/wxpython/tools/update_menudata.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/tools/update_menudata.py	2012-01-31 23:11:45 UTC (rev 50599)
+++ grass/branches/releasebranch_6_4/gui/wxpython/tools/update_menudata.py	2012-02-01 00:41:51 UTC (rev 50600)
@@ -54,8 +54,8 @@
             continue
         try:
             interface = gtask.parse_interface(module)
-        except IOError, e:
-            grass.error(e)
+        except:
+            grass.error(module)
             continue
         modules[interface.name] = { 'label'   : interface.label,
                                     'desc'    : interface.description,



More information about the grass-commit mailing list