Skip to content

Commit

Permalink
remove extra spaces from message text (fix #7648)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Mar 24, 2014
1 parent d86a9aa commit d9bed41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/plugins/fTools/tools/doSimplify.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ def accept( self ):
self.spnTolerance.value(), True, outFileName, self.encoding ) self.spnTolerance.value(), True, outFileName, self.encoding )
else: else:
res = QMessageBox.warning( self, self.tr( "Warning"), res = QMessageBox.warning( self, self.tr( "Warning"),
self.tr( "Currently QGIS doesn't allow simultaneous access from \ self.tr( "Currently QGIS doesn't allow simultaneous access from "
different threads to the same datasource. Make sure your layer's \ "different threads to the same datasource. Make sure your layer's "
attribute tables are closed. Continue?"), "attribute tables are closed. Continue?"),
QMessageBox.Yes | QMessageBox.No ) QMessageBox.Yes | QMessageBox.No )
if res == QMessageBox.No: if res == QMessageBox.No:
return return
Expand Down

0 comments on commit d9bed41

Please sign in to comment.