diff --git a/README.md b/README.md index 04b1a06..c838191 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +![pyTorrent logo](pytorrent/static/favicon.svg) # pyTorrent Modern single-page web UI for managing rTorrent through SCGI/XML-RPC. pyTorrent focuses on fast live updates, multi-profile support, automation, diagnostics and a clean browser-based workflow inspired by ruTorrent. diff --git a/pytorrent/cli.py b/pytorrent/cli.py index cc56c2b..77f4c39 100644 --- a/pytorrent/cli.py +++ b/pytorrent/cli.py @@ -106,7 +106,7 @@ def build_parser() -> argparse.ArgumentParser: token.set_defaults(func=_cmd_revoke_api_token) icon = sub.add_parser("tracker-favicon", help="Download or refresh a tracker favicon cache file") - icon.add_argument("domain", help="Tracker domain, e.g. t.pte.nu") + icon.add_argument("domain", help="Tracker domain e.g tracker.example.com") icon.add_argument("--no-refresh", action="store_true", help="Use fresh cache when available") icon.add_argument("--debug", action="store_true", help="Print cache diagnostics on success or failure") icon.set_defaults(func=_cmd_tracker_favicon)