[GRASS-SVN] r49430 - in grass/trunk/gui/wxpython: . lmgr
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 30 05:54:45 EST 2011
Author: martinl
Date: 2011-11-30 02:54:45 -0800 (Wed, 30 Nov 2011)
New Revision: 49430
Modified:
grass/trunk/gui/wxpython/lmgr/layertree.py
grass/trunk/gui/wxpython/wxgui.py
Log:
wxGUI: dbm -> dbmgr (see r49429)
`v.info -g` -> `v.info -e`
Modified: grass/trunk/gui/wxpython/lmgr/layertree.py
===================================================================
--- grass/trunk/gui/wxpython/lmgr/layertree.py 2011-11-30 10:44:37 UTC (rev 49429)
+++ grass/trunk/gui/wxpython/lmgr/layertree.py 2011-11-30 10:54:45 UTC (rev 49430)
@@ -342,7 +342,7 @@
if layer and layer.GetType() == 'vector':
if 'info' not in self.GetPyData(self.layer_selected)[0]:
info = grass.parse_command('v.info',
- flags = 'g',
+ flags = 'e',
map = layer.GetName())
self.GetPyData(self.layer_selected)[0]['info'] = info
info = self.GetPyData(self.layer_selected)[0]['info']
Modified: grass/trunk/gui/wxpython/wxgui.py
===================================================================
--- grass/trunk/gui/wxpython/wxgui.py 2011-11-30 10:44:37 UTC (rev 49429)
+++ grass/trunk/gui/wxpython/wxgui.py 2011-11-30 10:54:45 UTC (rev 49430)
@@ -55,7 +55,7 @@
from gui_core.widgets import GNotebook
from modules.histogram import HistogramFrame
from modules.mcalc_builder import MapCalcFrame
-from dbm.manager import AttributeManager
+from dbmgr.manager import AttributeManager
from core.workspace import ProcessWorkspaceFile, ProcessGrcFile, WriteWorkspaceFile
from gui_core.goutput import GMConsole
from gui_core.dialogs import GdalOutputDialog, DxfImportDialog, GdalImportDialog, MapLayersDialog
More information about the grass-commit
mailing list