From 7180695d4bb628d06b057f16f4c893b4cabf1370 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 7 Jan 2020 18:34:10 +0000 Subject: [PATCH] tools: Do not raise exception immediately Was a debugging line that was left in Signed-off-by: Michael Tremer --- tools/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/base.py b/tools/base.py index fdd862f..ec2da8b 100644 --- a/tools/base.py +++ b/tools/base.py @@ -277,7 +277,6 @@ class RIRParser(object): try: network = ipaddress.ip_network("%s/%s" % (address, prefix), strict=False) except ValueError: - raise logging.warning("Invalid IP address: %s" % address) return -- 2.39.2