Skip to content

Commit 90d242d

Browse files
author
jef
committedApr 26, 2010
fix runtime error in fTools' spatial join
git-svn-id: http://svn.osgeo.org/qgis/trunk@13398 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent bfe16a9 commit 90d242d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def accept(self):
8686
outName = outPath.right((outPath.length() - outPath.lastIndexOf("/")) - 1)
8787
if outName.endsWith(".shp"):
8888
outName = outName.left(outName.length() - 4)
89-
self.compute(inName, joinName, outPath, summary, sumList, keep, self.progressBar)
89+
res = self.compute(inName, joinName, outPath, summary, sumList, keep, self.progressBar)
9090
self.outShape.clear()
9191
if res:
9292
addToTOC = QMessageBox.question(self, self.tr("Spatial Join"),

0 commit comments

Comments
 (0)
Please sign in to comment.