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)
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