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

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jul 8 08:56:37 EDT 2010


Author: mmetz
Date: 2010-07-08 12:56:37 +0000 (Thu, 08 Jul 2010)
New Revision: 42721

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/preferences.py
Log:
disable debug print output

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/preferences.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/preferences.py	2010-07-08 12:55:59 UTC (rev 42720)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/preferences.py	2010-07-08 12:56:37 UTC (rev 42721)
@@ -877,9 +877,9 @@
         @param subkey subkey (value or list)
         @param value value
         """
-        print dict
-        print group, key, subkey, value
-        print 'x'
+        # print dict
+        # print group, key, subkey, value
+        # print 'x'
         if not dict.has_key(group):
             dict[group] = {}
 
@@ -890,8 +890,8 @@
             # 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]
+            # 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