From c1bf0c65ac391527acfdeee20380e4a3bbe2675a Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Tue, 31 Oct 2017 13:17:43 +0300 Subject: [PATCH] Print stop position name for not on tracks error --- subway_structure.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subway_structure.py b/subway_structure.py index 96a6d8c..1431ba2 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -546,7 +546,8 @@ class Route: if check_stop_positions and StopArea.is_stop(el): if k not in line_nodes: - city.warn('Stop position {} is not on tracks'.format(k), relation) + city.warn('Stop position "{}" ({}) is not on tracks'.format( + el['tags'].get('name', ''), k), relation) continue if k not in city.elements: