On line 490 of import_logs.py regex for _GANDI_SIMPLE_HOSTING_FORMAT, the regex used to match IP addresses only works for IPv4 because it does not include the column sign.
I suggest replacing (?P<ip>[a-zA-Z0-9.]+) with (?P<ip>[\w*.:-]+) as in other regex.
On line 490 of import_logs.py regex for
_GANDI_SIMPLE_HOSTING_FORMAT
, the regex used to match IP addresses only works for IPv4 because it does not include the column sign.I suggest replacing
(?P<ip>[a-zA-Z0-9.]+)
with(?P<ip>[\w*.:-]+)
as in other regex.