From d767012d808878a8449aa7985d40336bbaa810b7 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Mon, 7 Sep 2026 02:07:05 +0000 Subject: [PATCH] CLI help: drop remaining 'default domain' wording --- paskia/__main__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/paskia/__main__.py b/paskia/__main__.py index 105afae..7601c9c 100644 --- a/paskia/__main__.py +++ b/paskia/__main__.py @@ -228,12 +228,12 @@ def main(): "--rp-id", action="append", help="Relying Party ID of the initial domain(s) (default: localhost). " - "Repeatable and comma-separated; the first is the default domain. " + "Repeatable and comma-separated; bootstrap options apply to the first. " "Further domains are added via the admin interface.", ) init_parser.add_argument( "--rp-name", - help="Relying Party name of the default domain (default: same as rp-id). " + help="Relying Party name of the first domain (default: same as rp-id). " "Used by the initial admin registration; editable later via admin UI.", ) init_parser.add_argument( @@ -241,12 +241,12 @@ def main(): action="append", dest="origins", metavar="URL", - help="Allowed origin URL(s) for the default domain. May be specified " + help="Allowed origin URL(s) for the first domain. May be specified " "multiple times; comma-separated values accepted.", ) init_parser.add_argument( "--auth-host", - help="Dedicated authentication site for the default domain " + help="Dedicated authentication site for the first domain " "(optionally with scheme/port)", ) _add_listen_option(init_parser, help_extra=" (stored in the database)")