This commit is contained in:
2026-01-18 10:50:42 -08:00
parent 66132811e0
commit 66e6c6eb72
34 changed files with 718 additions and 516 deletions

View File

@@ -95,7 +95,7 @@ def maybe_show_formats_table(
)
try:
from SYS.result_table import ResultTable
from SYS.result_table import Table
from SYS import pipeline as pipeline_context
except Exception as exc:
log(f"download-file: ResultTable unavailable: {exc}", file=sys.stderr)
@@ -106,7 +106,7 @@ def maybe_show_formats_table(
if out_arg:
base_args.extend(["-path", str(out_arg)])
table = ResultTable(table_title).set_preserve_order(True)
table = Table(table_title)._perseverance(True)
table.set_table("internetarchive.format")
table.set_source_command("download-file", base_args)