Skip to content

Commit d393734

Browse files
committedSep 15, 2016
[processing] correct error message (fix #15511)
1 parent c23e96d commit d393734

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

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

Lines changed: 3 additions & 1 deletion
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)
Please sign in to comment.