Skip to content

Commit 8f19f74

Browse files
committedJul 13, 2017
Fix reportError call
1 parent 653ef7b commit 8f19f74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def processAlgorithm(self, parameters, context, feedback):
213213
break
214214

215215
if kde.addFeature(f) != QgsKernelDensityEstimation.Success:
216-
feedback.reportError(self.tr('Error adding feature with ID {} to heatmap').format(f.id()), self.tr('Processing'), QgsMessageLog.CRITICAL)
216+
feedback.reportError(self.tr('Error adding feature with ID {} to heatmap').format(f.id()))
217217

218218
feedback.setProgress(int(current * total))
219219

0 commit comments

Comments
 (0)
Please sign in to comment.