From: Roland Häder Date: Sun, 23 Jul 2023 18:50:56 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ba67edf5cc964bb13a81af1a2e4768823e95a31a;p=fba.git Continued: - fetch_fedipact() belongs to beach.city, those who have their blocklist "hidden" in a federated account --- diff --git a/fba/commands.py b/fba/commands.py index e781351..6974862 100644 --- a/fba/commands.py +++ b/fba/commands.py @@ -761,7 +761,7 @@ def fetch_fba_rss(args: argparse.Namespace) -> int: logger.debug("rss[]='%s'", type(rss)) for item in rss.items: - logger.debug("item='%s'", item) + logger.debug("item[%s]='%s'", type(item), item) domain = tidyup.domain(item.link.split("=")[1]) logger.debug("domain='%s' - AFTER!", domain) @@ -1235,7 +1235,7 @@ def fetch_fedipact(args: argparse.Namespace) -> int: continue logger.info("Fetching domain='%s' ...", domain) - federation.fetch_instances(domain, None, None, inspect.currentframe().f_code.co_name) + federation.fetch_instances(domain, "beach.city", None, inspect.currentframe().f_code.co_name) logger.debug("Success! - EXIT!") return 0