From 8b36ef72dd821abe6cbcdb5111c98ad68fcdfa9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Rodrigo?= Date: Mon, 9 Sep 2019 17:32:38 +0200 Subject: [PATCH] Fix Avoid duplicate issues in Analyser_Merge #560 --- analysers/Analyser_Merge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analysers/Analyser_Merge.py b/analysers/Analyser_Merge.py index f78ca4a02..526c9fb12 100644 --- a/analysers/Analyser_Merge.py +++ b/analysers/Analyser_Merge.py @@ -944,7 +944,7 @@ def analyser_osmosis_common(self): # Invalid OSM self.run(sql23 % {"official": table, "joinClause": joinClause}, lambda res: { "class": self.missing_osm["class"], - "subclass": str(stablehash(res[4])) if self.mapping.osmRef != "NULL" else None, + "subclass": str(stablehash(res[5])) if self.mapping.osmRef != "NULL" else None, "data": [self.typeMapping[res[1]], None, self.positionAsText] } )