[GRASS-SVN] r67467 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Jan 2 07:52:29 PST 2016


Author: annakrat
Date: 2016-01-02 07:52:29 -0800 (Sat, 02 Jan 2016)
New Revision: 67467

Modified:
   grass/trunk/gui/wxpython/gui_core/forms.py
Log:
wxGUI/forms: fix g.remove/g.list all selection

Modified: grass/trunk/gui/wxpython/gui_core/forms.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/forms.py	2016-01-02 15:48:51 UTC (rev 67466)
+++ grass/trunk/gui/wxpython/gui_core/forms.py	2016-01-02 15:52:29 UTC (rev 67467)
@@ -197,7 +197,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