[GRASS-SVN] r42754 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Jul 10 01:56:43 EDT 2010


Author: martinl
Date: 2010-07-10 05:56:43 +0000 (Sat, 10 Jul 2010)
New Revision: 42754

Modified:
   grass/trunk/gui/wxpython/gui_modules/preferences.py
Log:
wxGUI remove print statements


Modified: grass/trunk/gui/wxpython/gui_modules/preferences.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/preferences.py	2010-07-10 04:32:06 UTC (rev 42753)
+++ grass/trunk/gui/wxpython/gui_modules/preferences.py	2010-07-10 05:56:43 UTC (rev 42754)
@@ -561,7 +561,7 @@
                 'condition' : {
                     'size' : {
                         'width' : 100,
-                        'height' : 50,
+                        'height' : 40,
                         },
                     },
                 },
@@ -866,9 +866,6 @@
         @param subkey subkey (value or list)
         @param value value
         """
-        print dict
-        print group, key, subkey, value
-        print 'x'
         if not dict.has_key(group):
             dict[group] = {}
 
@@ -879,8 +876,6 @@
             # TODO: len(subkey) > 2
             if not dict[group][key].has_key(subkey[0]):
                 dict[group][key][subkey[0]] = {}
-            print group, key, subkey, value
-            print dict[group][key]
             dict[group][key][subkey[0]][subkey[1]] = value
         else:
             dict[group][key][subkey] = value



More information about the grass-commit mailing list