mirror of
				https://github.com/minetest-mods/skinsdb.git
				synced 2025-11-04 13:25:31 +01:00 
			
		
		
		
	update_skins.py
Remove leading zeros again
This commit is contained in:
		@@ -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"])
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user