[GRASS-SVN] r37482 -
grass/branches/releasebranch_6_4/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon May 25 13:02:40 EDT 2009
Author: martinl
Date: 2009-05-25 13:02:39 -0400 (Mon, 25 May 2009)
New Revision: 37482
Modified:
grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/georect.py
grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py
Log:
wxGUI: fix importing grass.script modules
Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/georect.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/georect.py 2009-05-25 16:56:10 UTC (rev 37481)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/georect.py 2009-05-25 17:02:39 UTC (rev 37482)
@@ -35,7 +35,7 @@
import wx.lib.colourselect as csel
import wx.wizard as wiz
-from grass.script import core as grass, vector, db
+from grass.script import core, vector, db as grass
import globalvar
import mapdisp
import render
Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py 2009-05-25 16:56:10 UTC (rev 37481)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py 2009-05-25 17:02:39 UTC (rev 37482)
@@ -26,7 +26,7 @@
import wx
import wx.combo
-from grass.script import core as grass
+from grass.script import core, vector as grass
import globalvar
import gcmd
import utils
More information about the grass-commit
mailing list