From 101c70fc8b00928b076c7c6043fcd99d1dd3ee02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian-Samuel=20Geb=C3=BChr?= Date: Wed, 11 Jan 2023 19:38:47 +0100 Subject: [PATCH] Document the export option --- cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 260c6cf..200965a 100644 --- a/cli.py +++ b/cli.py @@ -59,7 +59,9 @@ def load_remote_blocklist(server: str, token: str): def cli(): parser = argparse.ArgumentParser(description='Deploy blocklist updates to a mastodon server') parser.add_argument('action', choices=['diff', 'deploy', 'export'], - help="Either use 'diff' to check the difference between current blocks and future blocks or 'deploy'.") + help="Either use 'diff' to check the difference between current blocks and future blocks, " + "'deploy' to apply the current local blocklist or 'export' to export the remote " + "blocklist into a local file.") parser.add_argument('-s', '--server', help="The address of the server where you want to deploy (e.g. " "mastodon.social)") parser.add_argument('-t', '--token', help="Authorization token")