]> git.scottworley.com Git - paperdoorknob/blobdiff - args.py
Rename: html → dom
[paperdoorknob] / args.py
diff --git a/args.py b/args.py
index c5506729797f32ac2e8aaa9b050aae065da81082..b765fc645335ba9fdbb8db6c445e4baf079a75df 100644 (file)
--- a/args.py
+++ b/args.py
@@ -56,9 +56,9 @@ See https://faculty.bard.edu/bloch/geometry.pdf for details
         default=20)
     parser.add_argument(
         '--layout',
-        default='below',
+        default='beside',
         help='Whether to put character and author information `beside` or `below` the icon ' +
-             '(default: below)')
+             '(default: beside)')
     parser.add_argument(
         '--out',
         help='The filename stem at which to write output ' +
@@ -94,7 +94,8 @@ def spec_from_commandline_args() -> Iterator[Spec]:
         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,
@@ -106,4 +107,4 @@ def spec_from_commandline_args() -> Iterator[Spec]:
                 layout,
                 args.geometry,
                 texout,
-                (lambda _: None) if args.quiet else _print_status)
+                log)