PYVER,
)
- if not opt.convert_all:
+ if not opt.all:
inputs, outputs = [], []
for fpin in opt.inputs:
fpout = fpin.parent / fpin.name.replace("_async", "")
inputs.append(fpin)
outputs.append(fpout)
if not outputs:
- logger.warning("all output files are up to date, nothing to do")
+ logger.info("all output files are up to date, nothing to do")
return 0
else:
)
parser.add_argument(
"-B",
- "--convert-all",
+ "--all",
action="store_true",
help="process specified files without checking last modification times",
)