Skip to content

Commit a05324c

Browse files
committedAug 2, 2013
[ftools][fix #8390] fix typo
1 parent 65f9ec7 commit a05324c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/fTools/tools/doEliminate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def eliminate(self, inLayer, boundary, progressBar, outFileName):
228228
fidList += str(fid)
229229

230230
QtGui.QMessageBox.information(self, self.tr("Eliminate"),
231-
self.tr("Could not eliminate features with these ids:\n%s") %s (fidList))
231+
self.tr("Could not eliminate features with these ids:\n%s") % (fidList))
232232
else:
233233
QtGui.QMessageBox.warning(self, self.tr("Eliminate"), self.tr("Could not add features"))
234234

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

246246
self.iface.mapCanvas().refresh()

0 commit comments

Comments
 (0)
Please sign in to comment.