[GRASS-SVN] r50240 - grass/branches/develbranch_6/lib/python

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jan 17 10:51:55 EST 2012


Author: martinl
Date: 2012-01-17 07:51:54 -0800 (Tue, 17 Jan 2012)
New Revision: 50240

Modified:
   grass/branches/develbranch_6/lib/python/core.py
Log:
pythonlib: #1540 (grass python scripts run from grass6 return 1 on success)


Modified: grass/branches/develbranch_6/lib/python/core.py
===================================================================
--- grass/branches/develbranch_6/lib/python/core.py	2012-01-17 15:39:31 UTC (rev 50239)
+++ grass/branches/develbranch_6/lib/python/core.py	2012-01-17 15:51:54 UTC (rev 50240)
@@ -461,7 +461,7 @@
     
     if not lines or lines[0].rstrip('\r\n') != "@ARGS_PARSED@":
 	sys.stdout.write(s)
-	sys.exit(1)
+	sys.exit(p.returncode)
 
     return _parse_opts(lines[1:])
 



More information about the grass-commit mailing list