From 2e6ba2ffb2490079a54e5f82a5ebef3eb69a91e3 Mon Sep 17 00:00:00 2001 From: ibuler Date: Fri, 21 Jun 2019 16:03:37 +0800 Subject: [PATCH] =?UTF-8?q?[Update]=20=E6=B7=BB=E5=8A=A0debug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/reupload_guacamole_replays.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/reupload_guacamole_replays.py b/utils/reupload_guacamole_replays.py index 979103f19..ee3bfbb89 100644 --- a/utils/reupload_guacamole_replays.py +++ b/utils/reupload_guacamole_replays.py @@ -51,6 +51,7 @@ def upload_to_local(session): target_path = os.path.join(target_dir, target_filename) if not os.path.isdir(target_dir): os.makedirs(target_dir) + print("Move {} => {}".format(source_path, target_path)) shutil.copy(source_path, target_path) shutil.copystat(source_path, target_path) os.unlink(source_path)