Skip to content

Commit aa2aed9

Browse files
committedMay 16, 2019
[feature][needs-doc] format strings
1 parent cd5afc4 commit aa2aed9

File tree

1 file changed

+5
-1
lines changed
  • python/plugins/processing/algs/qgis

1 file changed

+5
-1
lines changed
 

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,11 @@ def processAlgorithm(self, parameters, context, feedback):
268268
if fcount > 0:
269269
feedback.setProgress(int(100 * current / fcount))
270270

271-
feedback.pushInfo(self.tr('Following nodes miss Z value ') + str(no_z_nodes))
271+
feedback.pushInfo(self.tr(
272+
'The following points to not have Z values: {no_z_report}'.format(
273+
no_z_report=str(no_z_nodes))
274+
)
275+
)
272276
# Return the results
273277
return {self.OUTPUT: dest_id, self.TOTALCLIMB: totalclimb,
274278
self.TOTALDESCENT: totaldescent,

0 commit comments

Comments
 (0)
Please sign in to comment.