[GRASS-SVN] r31959 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jul 2 06:03:16 EDT 2008
Author: martinl
Date: 2008-07-02 06:03:16 -0400 (Wed, 02 Jul 2008)
New Revision: 31959
Modified:
grass/trunk/gui/wxpython/gui_modules/dbm.py
grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py
Log:
wxGUI: remove print statements, trac #206
Modified: grass/trunk/gui/wxpython/gui_modules/dbm.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/dbm.py 2008-07-02 09:37:58 UTC (rev 31958)
+++ grass/trunk/gui/wxpython/gui_modules/dbm.py 2008-07-02 10:03:16 UTC (rev 31959)
@@ -1288,7 +1288,6 @@
# apply changes
self.OnApply(event)
- print self.mapDBInfo.GetColumns(table)
# update widgets
self.FindWindowById(self.layerPage[self.layer]['renameCol']).SetItems(self.mapDBInfo.GetColumns(table))
Modified: grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py 2008-07-02 09:37:58 UTC (rev 31958)
+++ grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py 2008-07-02 10:03:16 UTC (rev 31959)
@@ -47,7 +47,6 @@
# variables
#
self.vectmap = vectmap
- print self.vectmap
if not "@" in self.vectmap:
self.vectmap = self.vectmap + "@" + grassenv.GetGRASSVariable ("MAPSET")
self.mapname, self.mapset = self.vectmap.split("@")
@@ -316,7 +315,9 @@
(self.driver, self.database,self.tablename,
self.text_sql.GetValue().strip().replace("\n"," "))):
# FIXME: LOG
- print self.text_sql.GetValue().strip().replace("\n"," "), "not correct!"
+ # print self.text_sql.GetValue().strip().replace("\n"," "), "not correct!"
+ pass
+
def OnClear(self, event):
self.text_sql.SetValue("")
More information about the grass-commit
mailing list