remove spurious chunk_name printout

This commit is contained in:
Colin McMillen 2019-10-03 14:58:48 -04:00
parent 5db46186da
commit a722fa0d95

View File

@ -196,7 +196,6 @@ def set_sprite_chunk_size(metadata):
def edit_sprite_chunk_metadata(chunk): def edit_sprite_chunk_metadata(chunk):
while True: while True:
name = input('name for chunk #%d: ' % chunk['index']).strip() name = input('name for chunk #%d: ' % chunk['index']).strip()
print(name)
if re.fullmatch(r'\w+', name): if re.fullmatch(r'\w+', name):
chunk['name'] = name chunk['name'] = name
return return