Skip to content

Commit

Permalink
[feature][needs-doc] format strings
Browse files Browse the repository at this point in the history
  • Loading branch information
ghtmtt committed May 16, 2019
1 parent cd5afc4 commit aa2aed9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/plugins/processing/algs/qgis/Climb.py
Expand Up @@ -268,7 +268,11 @@ def processAlgorithm(self, parameters, context, feedback):
if fcount > 0:
feedback.setProgress(int(100 * current / fcount))

feedback.pushInfo(self.tr('Following nodes miss Z value ') + str(no_z_nodes))
feedback.pushInfo(self.tr(
'The following points to not have Z values: {no_z_report}'.format(
no_z_report=str(no_z_nodes))
)
)
# Return the results
return {self.OUTPUT: dest_id, self.TOTALCLIMB: totalclimb,
self.TOTALDESCENT: totaldescent,
Expand Down

0 comments on commit aa2aed9

Please sign in to comment.