Skip to content

Commit

Permalink
remove -z modifier when exproting to shapefile (bug#5394)
Browse files Browse the repository at this point in the history
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@110 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
volayaf committed Apr 17, 2012
1 parent 9eeec08 commit c85bfa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sextante/grass/GrassAlgorithm.py
Expand Up @@ -198,7 +198,7 @@ def processAlgorithm(self, progress):
command += " output=\"" + filename + "\""
commands.append(command)
if isinstance(out, OutputVector):
command = "v.out.ogr -e -z input=" + out.name
command = "v.out.ogr -e input=" + out.name
command += " dsn=\"" + os.path.dirname(out.value) + "\""
command += " format=ESRI_Shapefile"
command += " olayer=" + os.path.basename(out.value)
Expand Down

0 comments on commit c85bfa7

Please sign in to comment.