[GRASS-SVN] r41961 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Apr 22 03:18:43 EDT 2010
Author: martinl
Date: 2010-04-22 03:18:34 -0400 (Thu, 22 Apr 2010)
New Revision: 41961
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/gdialogs.py
Log:
wxGUI grass6 related fix
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gdialogs.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gdialogs.py 2010-04-22 06:28:14 UTC (rev 41960)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gdialogs.py 2010-04-22 07:18:34 UTC (rev 41961)
@@ -1533,7 +1533,7 @@
self.btn_run.Enable(False)
return
layerId = 1
- for line in ret.splitlines():
+ for line in ret.split(','):
layerName = line.strip()
grassName = utils.GetValidLayerName(layerName)
data.append((layerId, layerName.strip(), grassName.strip()))
More information about the grass-commit
mailing list