From f2a13861f8dc479b29ea886c0ddee2bb3f7278d5 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Tue, 13 Oct 2020 22:15:35 +0200 Subject: [PATCH] extend the helptext for topics --- url2markdown/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/url2markdown/cli.py b/url2markdown/cli.py index 138342d..c1e0d00 100644 --- a/url2markdown/cli.py +++ b/url2markdown/cli.py @@ -7,5 +7,6 @@ def cli(): help="The URL of the article to convert to Markdown.", type=str) parser.add_argument("--topics", help="A list of comma separated topics.") + parser.add_argument("--topics", help="A list of comma separated topics e.g. 'foo,bar'.") return parser.parse_args()