[QGIS Commit] r13398 - trunk/qgis/python/plugins/fTools/tools

svn_qgis at osgeo.org svn_qgis at osgeo.org
Mon Apr 26 18:41:29 EDT 2010


Author: jef
Date: 2010-04-26 18:41:28 -0400 (Mon, 26 Apr 2010)
New Revision: 13398

Modified:
   trunk/qgis/python/plugins/fTools/tools/doSpatialJoin.py
Log:
fix runtime error in fTools' spatial join

Modified: trunk/qgis/python/plugins/fTools/tools/doSpatialJoin.py
===================================================================
--- trunk/qgis/python/plugins/fTools/tools/doSpatialJoin.py	2010-04-26 22:30:16 UTC (rev 13397)
+++ trunk/qgis/python/plugins/fTools/tools/doSpatialJoin.py	2010-04-26 22:41:28 UTC (rev 13398)
@@ -86,7 +86,7 @@
                 outName = outPath.right((outPath.length() - outPath.lastIndexOf("/")) - 1)
             if outName.endsWith(".shp"):
                 outName = outName.left(outName.length() - 4)
-            self.compute(inName, joinName, outPath, summary, sumList, keep, self.progressBar)
+            res = self.compute(inName, joinName, outPath, summary, sumList, keep, self.progressBar)
             self.outShape.clear()
             if res:
               addToTOC = QMessageBox.question(self, self.tr("Spatial Join"),



More information about the QGIS-commit mailing list