From 8f19f7489359e5ee68b6ea80a66d57a5001c5a69 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Thu, 13 Jul 2017 20:11:37 +1000 Subject: [PATCH] Fix reportError call --- python/plugins/processing/algs/qgis/Heatmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/algs/qgis/Heatmap.py b/python/plugins/processing/algs/qgis/Heatmap.py index cfdd80cae9e..99fb6ddd097 100644 --- a/python/plugins/processing/algs/qgis/Heatmap.py +++ b/python/plugins/processing/algs/qgis/Heatmap.py @@ -213,7 +213,7 @@ class Heatmap(QgisAlgorithm): break if kde.addFeature(f) != QgsKernelDensityEstimation.Success: - feedback.reportError(self.tr('Error adding feature with ID {} to heatmap').format(f.id()), self.tr('Processing'), QgsMessageLog.CRITICAL) + feedback.reportError(self.tr('Error adding feature with ID {} to heatmap').format(f.id())) feedback.setProgress(int(current * total))