From c63822a5e54a75e48411c21bf75e9472d1a384d3 Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 19 Apr 2022 22:25:49 +0100 Subject: [PATCH] Fix missing input redirection in a hint text --- archivebox/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/main.py b/archivebox/main.py index 65588ef7..ed1df69b 100755 --- a/archivebox/main.py +++ b/archivebox/main.py @@ -427,7 +427,7 @@ def init(force: bool=False, quick: bool=False, setup: bool=False, out_dir: Path= print(' archivebox server # then visit http://127.0.0.1:8000') print() print(' To add new links, you can run:') - print(" archivebox add ~/some/path/or/url/to/list_of_links.txt") + print(" archivebox add < ~/some/path/to/list_of_links.txt") print() print(' For more usage and examples, run:') print(' archivebox help')