From 7ffc862d4374f846e7817bcee227c7a59ba0414f Mon Sep 17 00:00:00 2001 From: Maksim Andrianov Date: Fri, 28 Jun 2019 16:12:10 +0300 Subject: [PATCH] [generator][python] Fixed ttf copy. --- tools/python/maps_generator/maps_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/maps_generator/maps_generator.py b/tools/python/maps_generator/maps_generator.py index a22823bd0c..5efb5cfaf0 100644 --- a/tools/python/maps_generator/maps_generator.py +++ b/tools/python/maps_generator/maps_generator.py @@ -240,7 +240,7 @@ def stage_external_resources(env): for file in os.listdir(env.user_resource_path) if file.endswith(".ttf") and file not in black_list] for ttf_file in resources: - shutil.copy2(ttf_file, env.intermediate_path) + shutil.copy2(ttf_file, env.mwm_path) shutil.copy2( os.path.join(env.user_resource_path, "WorldCoasts_obsolete.mwm"),