X-Git-Url: https://code.delx.au/transcoding/blobdiff_plain/6cff906b387738d5a61b2c8991bd59a6d5d61fef..HEAD:/batch-run diff --git a/batch-run b/batch-run index dcb60d8..5290dc8 100755 --- a/batch-run +++ b/batch-run @@ -80,8 +80,9 @@ def parse_args(): def main(): opts, args = parse_args() - filenames = map(os.path.abspath, args) + filenames = list(map(os.path.abspath, args)) for filename in filenames: + print("Processing", filename) make_and_chdir(filename) with open(filename) as fd: batch_process(opts, parse_file(fd))