From 65dce899cb777494d870e411f04beabfa522445f Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Wed, 29 Jan 2020 17:15:22 +0000 Subject: [PATCH] add print to debug travis (temp) --- utils/mapnik-config/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/mapnik-config/build.py b/utils/mapnik-config/build.py index 10305302c..6cddbeb37 100644 --- a/utils/mapnik-config/build.py +++ b/utils/mapnik-config/build.py @@ -63,6 +63,7 @@ def write_config(env, template_filename, config_filename): if val is None: return matchobj.group(0) else: + print(key,":",val) return 'CONFIG_%s=%s' % (key, escape(str(val))) config = re.sub(r'^CONFIG_(\w+)=.*', subst, template, flags=re.M) config_file.write(config)