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

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Apr 17 08:08:23 PDT 2018


Author: annakrat
Date: 2018-04-17 08:08:23 -0700 (Tue, 17 Apr 2018)
New Revision: 72628

Modified:
   grass/trunk/gui/wxpython/gui_core/gselect.py
Log:
wxGUI: fix d.vect dialog when loading layer without db connection, caused by r72547

Modified: grass/trunk/gui/wxpython/gui_core/gselect.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/gselect.py	2018-04-17 15:06:49 UTC (rev 72627)
+++ grass/trunk/gui/wxpython/gui_core/gselect.py	2018-04-17 15:08:23 UTC (rev 72628)
@@ -1139,7 +1139,7 @@
                             self.columns.remove(key)
                         except ValueError:
                             pass
-        except (KeyError, ValueError):
+        except (KeyError, ValueError, GException):
             self.columns[:] = []
 
         # update list



More information about the grass-commit mailing list