Skip to content

Commit

Permalink
Fix reportError call
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jul 13, 2017
1 parent 653ef7b commit 8f19f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Heatmap.py
Expand Up @@ -213,7 +213,7 @@ def processAlgorithm(self, parameters, context, feedback):
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))

Expand Down

0 comments on commit 8f19f74

Please sign in to comment.