From 2d77ada25d828685dc2ff2dc83005d3dddf8770d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Sat, 1 Dec 2018 18:05:36 +0100 Subject: [PATCH] Add some debbuging logs --- process | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/process b/process index 50bb77b0..b114d5dc 100755 --- a/process +++ b/process @@ -162,6 +162,7 @@ def finalise(config, root_folder): full_name = config['full_name'] destination = config['destination'] + print(destination) if os.path.exists(destination): return @@ -239,6 +240,10 @@ while True: config['mtime'] = mtime with open(config_file_name, 'w') as config_file: + import sys + print(config_file.encoding) + print(sys.stdout.encoding) + print(sys.getfilesystemencoding()) config_file.write(yaml.safe_dump(config, default_flow_style=False)) finalise(config, root_folder)