Skip to content

Commit

Permalink
Typo fix: Add missing spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ committed May 31, 2017
1 parent 2148fa9 commit 7397b3c
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 @@ -104,7 +104,7 @@ def processAlgorithm(self, 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 @@ -147,7 +147,7 @@ def processAlgorithm(self, 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 7397b3c

Please sign in to comment.