Skip to content

Commit 44aa83b

Browse files
committedDec 2, 2012
fix 45a933a
1 parent 293e494 commit 44aa83b

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
@@ -221,15 +221,15 @@ def eliminate(self, inLayer, boundary, progressBar, outFileName = None):
221221
# replace geometry in outLayer
222222
if not outLayer.changeGeometry(aFid, newGeom):
223223
QtGui.QMessageBox.warning(self, self.tr("Eliminate"),
224-
self.tr("Could not replace geometry of feature with id %1").arg( aFid )
224+
self.tr("Could not replace geometry of feature with id %1").arg( aFid ))
225225
doCommit = False
226226
break
227227

228228
# delete eliminated features
229229
for aFid in fidsToDelete:
230230
if not outLayer.deleteFeature(aFid):
231231
QtGui.QMessageBox.warning(self, self.tr("Eliminate"),
232-
self.tr("Could not delete feature with id %1").arg( aFid )
232+
self.tr("Could not delete feature with id %1").arg( aFid ))
233233
doCommit = False
234234
break
235235
# prepare array for the next loop

0 commit comments

Comments
 (0)
Please sign in to comment.