Remove hardcoded sport key reference

This commit is contained in:
Ilya Zverev 2017-07-27 16:26:21 +03:00
parent 071089b704
commit 2ef9e75495

View file

@ -214,8 +214,7 @@ def komap_mapswithme(options):
mapcss_static_tags = {}
for v in classificator.values():
for i, t in enumerate(v.keys()):
# Exception for "sport=*" since these are both main and secondary keys.
mapcss_static_tags[t] = i == 0 and t != 'sport'
mapcss_static_tags[t] = mapcss_static_tags.get(t, True) and i == 0
# Get all mapcss dynamic tags from mapcss-dynamic.txt
mapcss_dynamic_tags = set([line.rstrip() for line in open(os.path.join(ddir, 'mapcss-dynamic.txt'))])