From b27a42878756947dfdbf3d638812f82f8d8c2ae5 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Wed, 11 Aug 2021 22:38:17 +0000 Subject: [PATCH] Fix usage notes from URLs to lines on stdin --- youtube-extract | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube-extract b/youtube-extract index ff926b7..202b1f6 100755 --- a/youtube-extract +++ b/youtube-extract @@ -8,10 +8,10 @@ import sys if any(x in sys.argv for x in ['--help', '-h', '-?', 'help']): print('Usage: youtube-extract [massage|removenonyt]', file = sys.stderr) print(file = sys.stderr) - print("In 'massage' mode (default), extracts any references to YouTube videos, channels, and playlists from the URLs on stdin and prints them on stdout.", file = sys.stderr) + print("In 'massage' mode (default), extracts any references to YouTube videos, channels, and playlists from the lines on stdin and prints them on stdout.", file = sys.stderr) print('Lines that don\'t seem to contain references to such YouTube things are printed on stderr.', file = sys.stderr) print(file = sys.stderr) - print("In 'removenonyt' mode, prints all URLs that look like they are or contain YouTube URLs on stdout.", file = sys.stderr) + print("In 'removenonyt' mode, prints all lines that look like they are or contain YouTube URLs on stdout.", file = sys.stderr) sys.exit(1)