]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 25 Jun 2023 22:52:07 +0000 (00:52 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 25 Jun 2023 22:52:07 +0000 (00:52 +0200)
- re-run fetch_instances 3-5 times, not fetch_fbabot_atom

fba/boot.py

index 7843a3070f622b02286a986bffb91e3b5747501a..eccd5141ea755cf39fba3eb47e5398c3cca4f82a 100644 (file)
@@ -99,7 +99,7 @@ def init_parser():
     ### Fetch blocks from FBA's bot account ###
     parser = subparser_command.add_parser(
         "fetch_fbabot_atom",
-        help="Fetches ATOM feed with domains from FBA's bot account. You may wish to re-run this command several times (at least 3 with big instances) to have a decent amount of valid instances.",
+        help="Fetches ATOM feed with domains from FBA's bot account.",
     )
     parser.set_defaults(command=commands.fetch_fbabot_atom)
 
@@ -114,7 +114,7 @@ def init_parser():
     ### Fetch instances from given initial instance ###
     parser = subparser_command.add_parser(
         "fetch_instances",
-        help="Fetches instances (aka. \"domains\") from an initial instance.",
+        help="Fetches instances (aka. \"domains\") from an initial instance. You may want to re-run this command several times (at least 3 with big instances) to have a decent amount of valid instances.",
     )
     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.add_argument("--single", action="store_true", help="Only fetch given instance.")