1
0
Fork 0
mirror of https://github.com/Oreolek/gamebookformat.git synced 2024-06-16 23:20:44 +03:00

Fixed output of supported formats in command usage.

This commit is contained in:
Pelle Nilsson 2013-06-13 23:11:25 +02:00
parent 9831aae42a
commit d99ca50fa2

View file

@ -61,7 +61,8 @@ OUTPUT_FORMATS = [
def make_supported_formats_list_string():
return "Supported Output Formats:\n" + "\n".join(
[str(f) for f in OUTPUT_FORMATS])
[' %-8s%s' % (f['extension'], f['name'])
for f in OUTPUT_FORMATS])
def format_gamebook(inputfilenames,
outputfilename,