resource/generate.py: fix usage message

This commit is contained in:
Matthias Schiffer 2023-08-18 18:34:12 +02:00
parent 427a992897
commit 2a92eefd09
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C

View file

@ -6,7 +6,7 @@ import sys
if len(sys.argv) != 3: if len(sys.argv) != 3:
sys.exit('Usage: extract.py <colors.json> <block_types.rs>') sys.exit('Usage: generate.py <colors.json> <block_types.rs>')
with open(sys.argv[1]) as f: with open(sys.argv[1]) as f:
colors = json.load(f) colors = json.load(f)