From 026e5dc5e6169c3170615fdde9c66f128567d4f8 Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Fri, 18 Jan 2019 22:31:45 +0300 Subject: [PATCH] More logging --- emojireplace.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emojireplace.py b/emojireplace.py index f5a3a23050..74aef89719 100644 --- a/emojireplace.py +++ b/emojireplace.py @@ -37,9 +37,10 @@ for emoji in discord_emojis: full_discord_path = os.path.join(extracted_discord_path, emoji) # Copy and overwrite the discord emojis with the mutantstd alternatives + print("Copying {} to {}.".format(full_mutstd_path, full_discord_path)) shutil.copyfile(full_mutstd_path, full_discord_path) - print("Replaced {} emoji.".format(full_mutstd_name)) + print("Replaced {} emoji.".format(emoji)) replace_counter += 1 print("Done, {} emojis replaced.".format(replace_counter))