Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions siteupdate/python-teresco/siteupdate.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -3208,11 +3208,13 @@ def run(self):

for w in r.point_list:
# duplicate labels
# first, check primary label
lower_label = w.label.lower().strip("+*")
if lower_label in all_route_labels:
datacheckerrors.append(DatacheckEntry(r,[lower_label],"DUPLICATE_LABEL"))
else:
all_route_labels.add(lower_label)
# then check alt labels
for label in w.alt_labels:
lower_label = label.lower().strip("+*")
if lower_label in all_route_labels:
Expand Down