Przeglądaj źródła

wxGUI/extension: ignore --q/v flags

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47162 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 lat temu
rodzic
commit
b15d756b2d
1 zmienionych plików z 3 dodań i 2 usunięć
  1. 3 2
      gui/wxpython/gui_modules/ghelp.py

+ 3 - 2
gui/wxpython/gui_modules/ghelp.py

@@ -15,7 +15,7 @@ Classes:
  - HelpWindow
  - HelpPanel
 
-(C) 2008-2010 by the GRASS Development Team
+(C) 2008-2011 by the GRASS Development Team
 This program is free software under the GNU General Public License
 (>=v2). Read the file COPYING that comes with GRASS for details.
 
@@ -822,7 +822,8 @@ class InstallExtensionWindow(wx.Frame):
                 desc = f.get('description', '')
             if not name and not desc:
                 continue
-            if name in ('l', 'f', 'g'):
+            print name
+            if name in ('l', 'f', 'g', 'quiet', 'verbose'):
                 continue
             self.options[name] = wx.CheckBox(parent = self.panel, id = wx.ID_ANY,
                                              label = desc)