mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-15 00:07:25 -05:00
fixes the ogr2ogr based geoprocessing tools
This commit is contained in:
parent
7bd0285dfd
commit
fbb916d908
@ -125,7 +125,7 @@ class Buffer(GdalAlgorithm):
|
||||
other_fields.append(f.name())
|
||||
|
||||
if other_fields:
|
||||
other_fields = ', {}'.format(','.join(other_fields))
|
||||
other_fields = ',*'
|
||||
else:
|
||||
other_fields = ''
|
||||
|
||||
|
||||
@ -135,7 +135,7 @@ class Dissolve(GdalAlgorithm):
|
||||
other_fields.append(f.name())
|
||||
|
||||
if other_fields:
|
||||
other_fields = ', {}'.format(','.join(other_fields))
|
||||
other_fields = ',*'
|
||||
else:
|
||||
other_fields = ''
|
||||
|
||||
|
||||
@ -107,7 +107,7 @@ class OffsetCurve(GdalAlgorithm):
|
||||
other_fields.append(f.name())
|
||||
|
||||
if other_fields:
|
||||
other_fields = ', {}'.format(','.join(other_fields))
|
||||
other_fields = ',*'
|
||||
else:
|
||||
other_fields = ''
|
||||
|
||||
|
||||
@ -136,7 +136,7 @@ class OneSideBuffer(GdalAlgorithm):
|
||||
other_fields.append(f.name())
|
||||
|
||||
if other_fields:
|
||||
other_fields = ', {}'.format(','.join(other_fields))
|
||||
other_fields = ',*'
|
||||
else:
|
||||
other_fields = ''
|
||||
|
||||
|
||||
@ -111,7 +111,7 @@ class PointsAlongLines(GdalAlgorithm):
|
||||
other_fields.append(f.name())
|
||||
|
||||
if other_fields:
|
||||
other_fields = ', {}'.format(','.join(other_fields))
|
||||
other_fields = ',*'
|
||||
else:
|
||||
other_fields = ''
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user