From c5198327556d8bd5e2701925df86f5a58fed6856 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Thu, 24 Sep 2020 18:37:37 +0000 Subject: [PATCH] Clarify twitter-list-posts argument value --- snscrape/modules/twitter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snscrape/modules/twitter.py b/snscrape/modules/twitter.py index 64fa99e..896e5f1 100644 --- a/snscrape/modules/twitter.py +++ b/snscrape/modules/twitter.py @@ -625,7 +625,7 @@ class TwitterListPostsScraper(TwitterSearchScraper): @classmethod def setup_parser(cls, subparser): - subparser.add_argument('list', help = 'A Twitter list, formatted as "username/listname"') + subparser.add_argument('list', help = 'A Twitter list ID or a string of the form "username/listname" (replace spaces with dashes)') @classmethod def from_args(cls, args):