@@ -16,6 +16,7 @@ from ..util import (
)
from ..config import (
TIMEOUT,
+ CURL_BINARY,
SAVE_READABILITY,
DEPENDENCIES,
READABILITY_VERSION,
@@ -65,7 +66,10 @@ def save_readability(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEO
# Readability Docs: https://github.com/mozilla/readability
status = 'succeeded'
- cmd = []
+ cmd = [
+ link.url
+ ]
timer = TimedProgress(timeout, prefix=' ')
try:
document = get_html(link, out_dir)