update_skins.py

Remove leading zeros again
Este commit está contenido en:
bell07 2020-09-10 11:08:49 +02:00
padre 8799ba0bd5
commit 77c00a0823
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -20,7 +20,7 @@ else:
for json in data["skins"]:
id = str(json["id"]).zfill(4)
id = str(json["id"])
# Texture file
raw_data = base64.b64decode(json["img"])