This commit is contained in:
Sazonov Andrey 2026-03-25 17:26:12 +03:00
parent 647734a380
commit a428c667be

View File

@ -166,7 +166,6 @@ def normalize_ip(ip):
try:
if "/" in ip:
return ip
addr = ipaddress.ip_address(ip)
if isinstance(addr, ipaddress.IPv4Address):
if addr.packed[-1] == 0:
@ -204,7 +203,7 @@ async def main():
configs = read_config(config_path, args.env)
for cfg in configs:
logging.info(f"\n=== Обработка: {cfg['name']} ===")
logging.info(f"\n\n=== Обработка: {cfg['name']} ===")
semaphore = Semaphore(cfg["threads"])