Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
pretty format for feedback
  • Loading branch information
ghtmtt committed Jun 7, 2019
1 parent ad4b3d2 commit 19ff856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/Climb.py
Expand Up @@ -241,13 +241,13 @@ def processAlgorithm(self, parameters, context, feedback):

feedback.pushInfo(self.tr(
'The following features do not have geometry: {no_geometry_report}'.format(
no_geometry_report=str(no_geometry))
no_geometry_report=(', '.join(no_geometry)))
)
)

feedback.pushInfo(self.tr(
'The following points do not have Z values: {no_z_report}'.format(
no_z_report=str(no_z_nodes))
no_z_report=(', '.join(no_z_nodes)))
)
)
# Return the results
Expand Down

0 comments on commit 19ff856

Please sign in to comment.