[GRASS-SVN] r42616 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Jun 20 18:42:16 EDT 2010
Author: martinl
Date: 2010-06-20 22:42:16 +0000 (Sun, 20 Jun 2010)
New Revision: 42616
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/gmodeler.py
Log:
wxGUI/modeler: fix OnRunModel
(merge r42615 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gmodeler.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gmodeler.py 2010-06-20 22:40:58 UTC (rev 42615)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gmodeler.py 2010-06-20 22:42:16 UTC (rev 42616)
@@ -779,11 +779,11 @@
dlg.Destroy()
return
- err = dlg.GetErrors()
- if err:
- GMessage(parent = self,
- message = unicode('\n'.join(err)))
- return
+ err = dlg.GetErrors()
+ if err:
+ GMessage(parent = self,
+ message = unicode('\n'.join(err)))
+ return
self.goutput.cmdThread.SetId(-1)
for action in self.model.GetActions():
More information about the grass-commit
mailing list