Closed open-dynaMIX closed 2 years ago
If the column doesn't only contain the ip address, we use urlparse() for fetching it. This lead to lowecasing the ip address and hence being unable to replace it in the log line. This commit fixes this by using urlparse()._hostinfo[0].
urlparse()
urlparse()._hostinfo[0]
Related to #65
If the column doesn't only contain the ip address, we use
urlparse()
for fetching it. This lead to lowecasing the ip address and hence being unable to replace it in the log line. This commit fixes this by usingurlparse()._hostinfo[0]
.Related to #65