Sfoglia il codice sorgente

wxGUI remove print statements

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@42754 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 anni fa
parent
commit
22b9d8b67a
1 ha cambiato i file con 1 aggiunte e 6 eliminazioni
  1. 1 6
      gui/wxpython/gui_modules/preferences.py

+ 1 - 6
gui/wxpython/gui_modules/preferences.py

@@ -561,7 +561,7 @@ class Settings:
                 'condition' : {
                     'size' : {
                         'width' : 100,
-                        'height' : 50,
+                        'height' : 40,
                         },
                     },
                 },
@@ -866,9 +866,6 @@ class Settings:
         @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 @@ class Settings:
             # 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