From bfb2de981ed339a90d53a20fae57e9d454630f9e Mon Sep 17 00:00:00 2001 From: qwewqa <198e559dbd446d973355f415bdfa34@gmail.com> Date: Mon, 1 Feb 2021 12:26:34 -0500 Subject: [PATCH] mix image export --- export_assets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export_assets.py b/export_assets.py index ac688d1..542a049 100644 --- a/export_assets.py +++ b/export_assets.py @@ -30,7 +30,7 @@ def main(): for chart in music.charts.values(): try: shutil.copy(chart.image_path, target_dir / get_chart_image_path(chart)) - shutil.copy(chart.image_path, target_dir / get_chart_mix_path(chart)) + shutil.copy(chart.mix_path, target_dir / get_chart_mix_path(chart)) except FileNotFoundError: pass