[GRASS-SVN] r31960 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jul 2 06:04:26 EDT 2008


Author: martinl
Date: 2008-07-02 06:04:26 -0400 (Wed, 02 Jul 2008)
New Revision: 31960

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py
   grass/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py
Log:
wxGUI: remove print statements, trac #206 (merged from trunk, r31959)

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py	2008-07-02 10:03:16 UTC (rev 31959)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py	2008-07-02 10:04:26 UTC (rev 31960)
@@ -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/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py	2008-07-02 10:03:16 UTC (rev 31959)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py	2008-07-02 10:04:26 UTC (rev 31960)
@@ -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