You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: