[GRASS-SVN] r52081 - grass/trunk/gui/wxpython/core
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jun 15 09:26:45 PDT 2012
Author: annakrat
Date: 2012-06-15 09:26:44 -0700 (Fri, 15 Jun 2012)
New Revision: 52081
Modified:
grass/trunk/gui/wxpython/core/gcmd.py
Log:
wxGUI: attempt to fix aborting command
Modified: grass/trunk/gui/wxpython/core/gcmd.py
===================================================================
--- grass/trunk/gui/wxpython/core/gcmd.py 2012-06-15 15:51:54 UTC (rev 52080)
+++ grass/trunk/gui/wxpython/core/gcmd.py 2012-06-15 16:26:44 UTC (rev 52081)
@@ -575,7 +575,7 @@
# wait for the process to end, sucking in stuff until it does end
while self.module.poll() is None:
if self._want_abort: # abort running process
- self.module.kill()
+ self.module.terminate()
self.aborted = True
return
if self.stdout:
More information about the grass-commit
mailing list