Skip to content

Commit fbb916d

Browse files
giomannyalldawson
authored andcommitted
fixes the ogr2ogr based geoprocessing tools
1 parent 7bd0285 commit fbb916d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

python/plugins/processing/algs/gdal/Buffer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
125125
other_fields.append(f.name())
126126

127127
if other_fields:
128-
other_fields = ', {}'.format(','.join(other_fields))
128+
other_fields = ',*'
129129
else:
130130
other_fields = ''
131131

python/plugins/processing/algs/gdal/Dissolve.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
135135
other_fields.append(f.name())
136136

137137
if other_fields:
138-
other_fields = ', {}'.format(','.join(other_fields))
138+
other_fields = ',*'
139139
else:
140140
other_fields = ''
141141

python/plugins/processing/algs/gdal/OffsetCurve.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
107107
other_fields.append(f.name())
108108

109109
if other_fields:
110-
other_fields = ', {}'.format(','.join(other_fields))
110+
other_fields = ',*'
111111
else:
112112
other_fields = ''
113113

python/plugins/processing/algs/gdal/OneSideBuffer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
136136
other_fields.append(f.name())
137137

138138
if other_fields:
139-
other_fields = ', {}'.format(','.join(other_fields))
139+
other_fields = ',*'
140140
else:
141141
other_fields = ''
142142

python/plugins/processing/algs/gdal/PointsAlongLines.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
111111
other_fields.append(f.name())
112112

113113
if other_fields:
114-
other_fields = ', {}'.format(','.join(other_fields))
114+
other_fields = ',*'
115115
else:
116116
other_fields = ''
117117

0 commit comments

Comments
 (0)