Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes the ogr2ogr based geoprocessing tools
  • Loading branch information
gioman authored and nyalldawson committed Oct 16, 2018
1 parent 7bd0285 commit fbb916d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/Buffer.py
Expand Up @@ -125,7 +125,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
other_fields.append(f.name())

if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/Dissolve.py
Expand Up @@ -135,7 +135,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
other_fields.append(f.name())

if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/OffsetCurve.py
Expand Up @@ -107,7 +107,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
other_fields.append(f.name())

if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/OneSideBuffer.py
Expand Up @@ -136,7 +136,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
other_fields.append(f.name())

if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/PointsAlongLines.py
Expand Up @@ -111,7 +111,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
other_fields.append(f.name())

if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

Expand Down

0 comments on commit fbb916d

Please sign in to comment.