1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-21 03:02:09 +00:00

Wrap normalize_ip in try..except

This commit is contained in:
yodax 2017-04-03 21:35:26 +02:00
parent 00c61dbcdd
commit 93ae0ae99c

View File

@ -894,7 +894,10 @@ def run_and_output_changes(env, pool):
def normalize_ip(ip): def normalize_ip(ip):
# Use ipaddress module to normalize the IPv6 notation and ensure we are matching IPv6 addresses written in different representations according to rfc5952. # Use ipaddress module to normalize the IPv6 notation and ensure we are matching IPv6 addresses written in different representations according to rfc5952.
import ipaddress import ipaddress
try:
return str(ipaddress.ip_address(ip)) return str(ipaddress.ip_address(ip))
except:
return ip
class FileOutput: class FileOutput:
def __init__(self, buf, width): def __init__(self, buf, width):