[GRASS-SVN] r47230 - grass/branches/develbranch_6/lib/python
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Jul 23 02:31:02 EDT 2011
Author: martinl
Date: 2011-07-22 23:31:02 -0700 (Fri, 22 Jul 2011)
New Revision: 47230
Modified:
grass/branches/develbranch_6/lib/python/core.py
Log:
glynn: Don't try to decode process output
(merge r46343 from trunk)
Modified: grass/branches/develbranch_6/lib/python/core.py
===================================================================
--- grass/branches/develbranch_6/lib/python/core.py 2011-07-22 19:26:38 UTC (rev 47229)
+++ grass/branches/develbranch_6/lib/python/core.py 2011-07-23 06:31:02 UTC (rev 47230)
@@ -233,7 +233,7 @@
@return stdout
"""
ps = pipe_command(*args, **kwargs)
- return _decode(ps.communicate()[0])
+ return ps.communicate()[0]
def parse_command(*args, **kwargs):
"""!Passes all arguments to read_command, then parses the output
More information about the grass-commit
mailing list