Skip to content

Commit c85bfa7

Browse files
author
volayaf
committedApr 17, 2012
remove -z modifier when exproting to shapefile (bug#5394)
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@110 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent 9eeec08 commit c85bfa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/sextante/grass/GrassAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def processAlgorithm(self, progress):
198198
command += " output=\"" + filename + "\""
199199
commands.append(command)
200200
if isinstance(out, OutputVector):
201-
command = "v.out.ogr -e -z input=" + out.name
201+
command = "v.out.ogr -e input=" + out.name
202202
command += " dsn=\"" + os.path.dirname(out.value) + "\""
203203
command += " format=ESRI_Shapefile"
204204
command += " olayer=" + os.path.basename(out.value)

0 commit comments

Comments
 (0)
Please sign in to comment.