[GRASS-SVN] r48160 - grass/trunk/scripts/m.proj

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Sep 6 03:23:48 EDT 2011


Author: neteler
Date: 2011-09-06 00:23:48 -0700 (Tue, 06 Sep 2011)
New Revision: 48160

Modified:
   grass/trunk/scripts/m.proj/m.proj.py
Log:
glynn: fix call

Modified: grass/trunk/scripts/m.proj/m.proj.py
===================================================================
--- grass/trunk/scripts/m.proj/m.proj.py	2011-09-06 07:03:27 UTC (rev 48159)
+++ grass/trunk/scripts/m.proj/m.proj.py	2011-09-06 07:23:48 UTC (rev 48160)
@@ -235,7 +235,7 @@
     #   cs2cs | sed -e 's/d/:/g' -e "s/'/:/g"  -e 's/"//g'
 
     cmd = ['cs2cs'] + copyinp + outfmt + in_proj.split() + ['+to'] + out_proj.split()
-    p = grass.Popen(cmd, stdin = grass.PIPE, stdout = grass.PIPE)
+    p = grass.Popen(cmd, stdin = grass.PIPE)
 
     while True:
 	line = inf.readline()



More information about the grass-commit mailing list