From 1b9dc6d163cd5f5c104609c7b69e745fe00074ff Mon Sep 17 00:00:00 2001 From: Eric Bryant Date: Sun, 10 Feb 2019 12:26:14 -0500 Subject: [PATCH] unique_name part 2 bugfix --- siteupdate/python-teresco/siteupdate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/siteupdate/python-teresco/siteupdate.py b/siteupdate/python-teresco/siteupdate.py index 95aa5bb0..f1dc256a 100755 --- a/siteupdate/python-teresco/siteupdate.py +++ b/siteupdate/python-teresco/siteupdate.py @@ -1567,7 +1567,8 @@ def __init__(self, all_waypoints, highway_systems, datacheckerrors): point_name += "!" self.waypoint_naming_log.append("Appended !: " + point_name) - # we're good; now construct a vertex + # we're good; now add point_name to the set and construct a vertex + vertex_names.add(point_name) if w.colocated is None: self.vertices[w] = HighwayGraphVertexInfo(w, point_name, datacheckerrors) else: