From 40c58079f5bd2eb024c3b19540e75410cbcaa78e Mon Sep 17 00:00:00 2001 From: Jachym Cepicky Date: Sun, 28 May 2017 10:58:55 +0200 Subject: [PATCH] bug fix --- mapproxy/scripts/mapproxy-dem2dataset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapproxy/scripts/mapproxy-dem2dataset b/mapproxy/scripts/mapproxy-dem2dataset index 69baff3..b827fcd 100755 --- a/mapproxy/scripts/mapproxy-dem2dataset +++ b/mapproxy/scripts/mapproxy-dem2dataset @@ -195,7 +195,7 @@ def print_confjson(rid, dirname, comment, group, srange, tileranges, refframe): } result["referenceFrames"] = [{ refframe: { - "lodRange": [int(x) for x in srange[0].split(","), + "lodRange": [int(x) for x in srange[0].split(",")], "tileRange": [ [int(x) for x in r.split(",")] for r in srange[1].split(":")] } }]