[GRASS-SVN] r54495 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 2 07:05:33 PST 2013


Author: martinl
Date: 2013-01-02 07:05:31 -0800 (Wed, 02 Jan 2013)
New Revision: 54495

Modified:
   grass/trunk/gui/wxpython/gui_core/gselect.py
Log:
wxGUI: fix SignatureSelect


Modified: grass/trunk/gui/wxpython/gui_core/gselect.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/gselect.py	2013-01-02 15:01:00 UTC (rev 54494)
+++ grass/trunk/gui/wxpython/gui_core/gselect.py	2013-01-02 15:05:31 UTC (rev 54495)
@@ -2106,9 +2106,7 @@
             path = os.path.join(path, 'subgroup', subgroup)
         try:
             items = list()
-            for element in os.listdir(path):
-                if element in ('subgroup', 'REF'):
-                    continue
+            for element in os.listdir(os.path.join(path, 'sig')):
                 items.append(element)
             self.SetItems(items)
         except OSError:



More information about the grass-commit mailing list