From 357bc857aba3254632cc20fec047cb18ae4aa15c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonia=20P=C3=A9rez-Cerezo?= Date: Sat, 24 Aug 2024 22:41:47 +0200 Subject: [PATCH] bugfix --- scripts/umap-extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/umap-extractor.py b/scripts/umap-extractor.py index 5a8b19f..4c0a03c 100755 --- a/scripts/umap-extractor.py +++ b/scripts/umap-extractor.py @@ -30,7 +30,7 @@ config["tilelayer"] = properties["tilelayer"] config["tilelayer"]["attribution"] = re.sub(r'\[\[([^|]+)\|([^|]+)\]\]', r'\2', config["tilelayer"]["attribution"]) def normalize_name(name) : - return name.replace("/", "_").replace("-","").replace(" ","") + return name.replace("/", "_").replace("-","").replace(" ","").replace(".","") datadir = os.path.join(outdir,"data") if not os.path.exists(datadir) :