diff --git a/README.md b/README.md index 6d02789..1fdec29 100644 --- a/README.md +++ b/README.md @@ -391,7 +391,7 @@ Skip the fetching of blocklists from any remote instances that are configured. Defaults to None. Stamp all *new* blocks pushed to a remote server with this comment or code. -Helps to identify blocks you've created on a server via this process versus ones that +Helps to identify blocks you've created on a server via Fediblockhole versus ones that already existed. ### mergeplan diff --git a/src/fediblockhole/__init__.py b/src/fediblockhole/__init__.py index 5bd6cf4..c97816f 100755 --- a/src/fediblockhole/__init__.py +++ b/src/fediblockhole/__init__.py @@ -795,7 +795,7 @@ def setup_argparse(): ap.add_argument('-b', '--block-audit-file', dest="blocklist_auditfile", help="Save blocklist auditfile to this location.") ap.add_argument('--merge-threshold', type=int, help="Merge threshold value") ap.add_argument('--merge-threshold-type', choices=['count', 'pct'], help="Type of merge threshold to use.") - ap.add_argument('--override-private-comment', dest='override_private_comment', help="Enforces a private comment for all blocks.") + ap.add_argument('--override-private-comment', dest='override_private_comment', help="Override private_comment with this string for new blocks when pushing blocklists.") ap.add_argument('-I', '--import-field', dest='import_fields', action='append', help="Extra blocklist fields to import.") ap.add_argument('-E', '--export-field', dest='export_fields', action='append', help="Extra blocklist fields to export.")