]> git.mxchange.org Git - fba.git/commitdiff
Fixed:
authorRoland Häder <roland@mxchange.org>
Mon, 5 Jun 2023 21:16:44 +0000 (23:16 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 5 Jun 2023 21:16:44 +0000 (23:16 +0200)
- --domain is required for command 'fetch_instances'

fba/boot.py

index 05f954650b0dacffb7efd037a1ae6f1a3cf1dc5e..d400490c72cddb48bc9b73e1bb715677fc6ce53a 100644 (file)
@@ -104,7 +104,7 @@ def init_parser():
         "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!")