More logging

This commit is contained in:
ave 2019-01-18 22:31:45 +03:00
parent 75419849da
commit 026e5dc5e6
No known key found for this signature in database
GPG Key ID: 09356ABAA42C842B
1 changed files with 2 additions and 1 deletions

View File

@ -37,9 +37,10 @@ for emoji in discord_emojis:
full_discord_path = os.path.join(extracted_discord_path, emoji) full_discord_path = os.path.join(extracted_discord_path, emoji)
# Copy and overwrite the discord emojis with the mutantstd alternatives # 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) shutil.copyfile(full_mutstd_path, full_discord_path)
print("Replaced {} emoji.".format(full_mutstd_name)) print("Replaced {} emoji.".format(emoji))
replace_counter += 1 replace_counter += 1
print("Done, {} emojis replaced.".format(replace_counter)) print("Done, {} emojis replaced.".format(replace_counter))