[GRASS-SVN] r46890 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jul 1 03:56:47 EDT 2011
Author: martinl
Date: 2011-07-01 00:56:47 -0700 (Fri, 01 Jul 2011)
New Revision: 46890
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
Log:
wxGUI: fix external formats dialog - `v.out.ogr -l`
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py 2011-07-01 07:51:54 UTC (rev 46889)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py 2011-07-01 07:56:47 UTC (rev 46890)
@@ -1410,7 +1410,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