[GRASS-SVN] r72659 - grass/branches/releasebranch_7_4/gui/wxpython/core
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue May 1 18:27:29 PDT 2018
Author: annakrat
Date: 2018-05-01 18:27:29 -0700 (Tue, 01 May 2018)
New Revision: 72659
Modified:
grass/branches/releasebranch_7_4/gui/wxpython/core/toolboxes.py
Log:
wxGUI: fix problem with Python addons not showing up on Windows, see #3177 (merge from trunk, r72658)
Modified: grass/branches/releasebranch_7_4/gui/wxpython/core/toolboxes.py
===================================================================
--- grass/branches/releasebranch_7_4/gui/wxpython/core/toolboxes.py 2018-05-02 01:25:35 UTC (rev 72658)
+++ grass/branches/releasebranch_7_4/gui/wxpython/core/toolboxes.py 2018-05-02 01:27:29 UTC (rev 72659)
@@ -521,7 +521,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