layout = BesideIconLayout(texifier, args.image_size)
else:
raise ValueError(f'Unknown layout: {args.layout}')
- with CachingFetcher(args.cache_path, args.timeout) as fetcher:
+ log = (lambda _: None) if args.quiet else _print_status
+ with CachingFetcher(args.cache_path, args.timeout, log) as fetcher:
with open(args.out + '.tex', 'wb') as texout:
yield Spec(
args.url,
layout,
args.geometry,
texout,
- (lambda _: None) if args.quiet else _print_status)
+ log)