From 7ea47126baedb503e736c15f397f8b35cecbe460 Mon Sep 17 00:00:00 2001 From: Al Date: Sun, 28 Aug 2016 15:54:55 -0400 Subject: [PATCH] [fix] logging --- scripts/geodata/openaddresses/formatter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/geodata/openaddresses/formatter.py b/scripts/geodata/openaddresses/formatter.py index 63cc1b3f..149b1af9 100644 --- a/scripts/geodata/openaddresses/formatter.py +++ b/scripts/geodata/openaddresses/formatter.py @@ -411,7 +411,7 @@ class OpenAddressesFormatter(object): for file_config in config.get('files', []): filename = file_config['filename'] - print('doing {}/{}'.format(country, filename)) + print(six.u('doing {}/{}').format(country, filename)) path = os.path.join(base_dir, country, filename) configs = (file_config, config, self.config) @@ -437,7 +437,7 @@ class OpenAddressesFormatter(object): for file_config in subdir_config.get('files', []): filename = file_config['filename'] - print('doing {}/{}/{}'.format(country, subdir, filename)) + print(six.u('doing {}/{}/{}').format(country, subdir, filename)) path = os.path.join(base_dir, country, subdir, filename)