mirror of
https://github.com/minetest-mods/skinsdb.git
synced 2024-12-25 00:40:17 +01:00
update_skins.py
Remove leading zeros again
This commit is contained in:
parent
02323fc427
commit
9b8fb79030
@ -20,7 +20,7 @@ else:
|
|||||||
|
|
||||||
|
|
||||||
for json in data["skins"]:
|
for json in data["skins"]:
|
||||||
id = str(json["id"]).zfill(4)
|
id = str(json["id"])
|
||||||
|
|
||||||
# Texture file
|
# Texture file
|
||||||
raw_data = base64.b64decode(json["img"])
|
raw_data = base64.b64decode(json["img"])
|
||||||
|
Loading…
Reference in New Issue
Block a user