[GRASS-SVN] r65257 - grass/trunk/lib/init
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat May 16 18:01:30 PDT 2015
Author: martinl
Date: 2015-05-16 18:01:30 -0700 (Sat, 16 May 2015)
New Revision: 65257
Modified:
grass/trunk/lib/init/grass.py
Log:
grass.py: don't discard clean_temp stderr output
Modified: grass/trunk/lib/init/grass.py
===================================================================
--- grass/trunk/lib/init/grass.py 2015-05-16 17:28:16 UTC (rev 65256)
+++ grass/trunk/lib/init/grass.py 2015-05-17 01:01:30 UTC (rev 65257)
@@ -1226,7 +1226,7 @@
def clean_temp():
message(_("Cleaning up temporary files..."))
nul = open(os.devnull, 'w')
- call([gpath("etc", "clean_temp")], stdout=nul, stderr=nul)
+ call([gpath("etc", "clean_temp")], stdout=nul)
nul.close()
More information about the grass-commit
mailing list