- --domain is required for command 'fetch_instances'
"fetch_instances",
help="Fetches instances (aka. \"domains\") from an initial instance.",
)
- parser.add_argument("--domain", help="Instance name (aka. domain) to fetch further instances from. Start with a large instance, e.g. mastodon.social .")
+ parser.add_argument("--domain", required=True, help="Instance name (aka. domain) to fetch further instances from. Start with a large instance, e.g. mastodon.social .")
parser.set_defaults(command=commands.fetch_instances)
# DEBUG: print("DEBUG: init_parser(): EXIT!")