Skip to content

Commit

Permalink
Merge pull request #4657 from DelazJ/patch-1
Browse files Browse the repository at this point in the history
Typo fix: Add missing spacing
  • Loading branch information
nyalldawson committed Jun 8, 2017
2 parents 1bbfd5b + 7397b3c commit 7d9cc13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/Dissolve.py
Expand Up @@ -105,7 +105,7 @@ def processAlgorithm(self, parameters, context, feedback):
errors = tmpInGeom.validateGeometry()
if len(errors) != 0:
for error in errors:
QgsMessageLog.logMessage(self.tr('ValidateGeometry()'
QgsMessageLog.logMessage(self.tr('ValidateGeometry() '
'error: One or more '
'input features have '
'invalid geometry: ') +
Expand Down Expand Up @@ -148,7 +148,7 @@ def processAlgorithm(self, parameters, context, feedback):
if len(errors) != 0:
for error in errors:
QgsMessageLog.logMessage(self.tr('ValidateGeometry() '
'error: One or more input'
'error: One or more input '
'features have invalid '
'geometry: ') +
error.what(), self.tr('Processing'), QgsMessageLog.CRITICAL)
Expand Down

0 comments on commit 7d9cc13

Please sign in to comment.