[GRASS-SVN] r67486 - grass/branches/releasebranch_7_0/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jan 4 20:19:03 PST 2016


Author: annakrat
Date: 2016-01-04 20:19:03 -0800 (Mon, 04 Jan 2016)
New Revision: 67486

Modified:
   grass/branches/releasebranch_7_0/gui/wxpython/gui_core/forms.py
Log:
wxGUI/forms: fix g.remove/g.list all selection (merge from trunk, r67467)

Modified: grass/branches/releasebranch_7_0/gui/wxpython/gui_core/forms.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/gui_core/forms.py	2016-01-05 00:10:15 UTC (rev 67485)
+++ grass/branches/releasebranch_7_0/gui/wxpython/gui_core/forms.py	2016-01-05 04:19:03 UTC (rev 67486)
@@ -193,7 +193,7 @@
                 type_param = self.task.get_param('type', element='name', raiseError=False)
 
                 if 'all' in type_param.get('value'):
-                    etype = type_param.get('values')
+                    etype = type_param.get('values')[:]
                     if 'all' in etype:
                         etype.remove('all')
                     etype = ','.join(etype)



More information about the grass-commit mailing list