[GRASS-SVN] r72658 - grass/trunk/gui/wxpython/core

svn_grass at osgeo.org svn_grass at osgeo.org
Tue May 1 18:25:36 PDT 2018


Author: annakrat
Date: 2018-05-01 18:25:35 -0700 (Tue, 01 May 2018)
New Revision: 72658

Modified:
   grass/trunk/gui/wxpython/core/toolboxes.py
Log:
wxGUI: fix problem with Python addons not showing up on Windows, see #3177

Modified: grass/trunk/gui/wxpython/core/toolboxes.py
===================================================================
--- grass/trunk/gui/wxpython/core/toolboxes.py	2018-04-30 19:29:28 UTC (rev 72657)
+++ grass/trunk/gui/wxpython/core/toolboxes.py	2018-05-02 01:25:35 UTC (rev 72658)
@@ -523,7 +523,7 @@
 
     flist = []
     for line in output.splitlines():
-        if not line.startswith('executables'):
+        if not line.startswith('name'):
             continue
         for fexe in line.split('=', 1)[1].split(','):
             flist.append(fexe)



More information about the grass-commit mailing list