From: Radek Czajka Date: Wed, 9 Dec 2020 09:27:31 +0000 (+0100) Subject: fix X-Git-Tag: 1.11~1 X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/8ceda11d427bb3a4e0094ff2424fd284dd5feae1 fix --- diff --git a/src/librarian/command_line.py b/src/librarian/command_line.py index 3c17daf..e7021bb 100644 --- a/src/librarian/command_line.py +++ b/src/librarian/command_line.py @@ -22,6 +22,13 @@ def main(*args, **kwargs): help='specifies the directory for output' ) + parser.add_argument( + '--mp3', + metavar="FILE", + nargs="*", + help='specifies an MP3 file, if needed' + ) + args = parser.parse_args() builder = builders[args.builder] @@ -39,6 +46,12 @@ def main(*args, **kwargs): )) document = WLDocument(filename=args.input_file) - output = document.build(args.builder) + + builder = builders[args.builder] + kwargs = { + "mp3": args.mp3, + } + + output = document.build(builder, **kwargs) with open(output_file_path, 'wb') as f: f.write(output.get_bytes())