[GRASS-SVN] r72629 - grass/branches/releasebranch_7_4/gui/wxpython/gui_core

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


Author: annakrat
Date: 2018-04-17 08:11:31 -0700 (Tue, 17 Apr 2018)
New Revision: 72629

Modified:
   grass/branches/releasebranch_7_4/gui/wxpython/gui_core/gselect.py
Log:
wxGUI: fix d.vect dialog when loading layer without db connection, caused by r72547 (merge from trunk, r72628)

Modified: grass/branches/releasebranch_7_4/gui/wxpython/gui_core/gselect.py
===================================================================
--- grass/branches/releasebranch_7_4/gui/wxpython/gui_core/gselect.py	2018-04-17 15:08:23 UTC (rev 72628)
+++ grass/branches/releasebranch_7_4/gui/wxpython/gui_core/gselect.py	2018-04-17 15:11:31 UTC (rev 72629)
@@ -1136,7 +1136,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