[GRASS-SVN] r63678 - grass/trunk/gui/wxpython/lmgr
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Dec 22 11:05:46 PST 2014
Author: martinl
Date: 2014-12-22 11:05:46 -0800 (Mon, 22 Dec 2014)
New Revision: 63678
Modified:
grass/trunk/gui/wxpython/lmgr/datacatalog.py
Log:
wxGUI/datacatalog: fix g.list for new element names (#2409)
Modified: grass/trunk/gui/wxpython/lmgr/datacatalog.py
===================================================================
--- grass/trunk/gui/wxpython/lmgr/datacatalog.py 2014-12-22 18:15:34 UTC (rev 63677)
+++ grass/trunk/gui/wxpython/lmgr/datacatalog.py 2014-12-22 19:05:46 UTC (rev 63678)
@@ -121,7 +121,7 @@
self.AppendItem(varloc, mapset)
# get list of all maps in location
- maplist = RunCommand('g.list', flags='mt', type='rast,rast3d,vect', mapset=','.join(mapsets),
+ maplist = RunCommand('g.list', flags='mt', type='raster,raster_3d,vector', mapset=','.join(mapsets),
quiet=True, read=True)
maplist = maplist.splitlines()
for ml in maplist:
More information about the grass-commit
mailing list