Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ftools][fix #8390] fix typo
  • Loading branch information
slarosa committed Aug 2, 2013
1 parent 65f9ec7 commit a05324c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doEliminate.py
Expand Up @@ -228,7 +228,7 @@ def eliminate(self, inLayer, boundary, progressBar, outFileName):
fidList += str(fid)

QtGui.QMessageBox.information(self, self.tr("Eliminate"),
self.tr("Could not eliminate features with these ids:\n%s") %s (fidList))
self.tr("Could not eliminate features with these ids:\n%s") % (fidList))
else:
QtGui.QMessageBox.warning(self, self.tr("Eliminate"), self.tr("Could not add features"))

Expand All @@ -241,6 +241,6 @@ def eliminate(self, inLayer, boundary, progressBar, outFileName):
ftools_utils.addShapeToCanvas(outFileName)
else:
QtGui.QMessageBox.information(self, self.tr("Eliminate"),
self.tr("Created output shapefile:\n%s") %s (outFileName))
self.tr("Created output shapefile:\n%s") % (outFileName))

self.iface.mapCanvas().refresh()

0 comments on commit a05324c

Please sign in to comment.