Skip to content

Commit f80021e

Browse files
committed
[processing] correct error message (fix #15511)
(cherry picked from commit d393734)
1 parent 0c1792a commit f80021e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/plugins/processing/algs/qgis/SinglePartsToMultiparts.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ def processAlgorithm(self, progress):
108108

109109
del writer
110110
else:
111-
raise GeoAlgorithmExecutionException(self.tr('Invalid unique ID field'))
111+
raise GeoAlgorithmExecutionException(
112+
self.tr('At least two features must have same attribute '
113+
'value! Please choose another field...'))
112114

113115
def singleToMultiGeom(self, wkbType):
114116
try:

0 commit comments

Comments
 (0)