mirror of https://github.com/fail2ban/fail2ban
Quite little adjustments on tests and return value
# Conflicts: # fail2ban/server/ipdns.pypull/1414/head
parent
8cb4a3f59e
commit
4274ae89c6
|
@ -303,12 +303,12 @@ class IPAddr(object):
|
|||
def isIPv4(self):
|
||||
""" return true if the IP object is of address family AF_INET
|
||||
"""
|
||||
return True if self.family == socket.AF_INET else False
|
||||
return self.family == socket.AF_INET
|
||||
|
||||
def isIPv6(self):
|
||||
""" return true if the IP object is of address family AF_INET6
|
||||
"""
|
||||
return True if self.family == socket.AF_INET6 else False
|
||||
return self.family == socket.AF_INET6
|
||||
|
||||
def getRaw(self):
|
||||
""" returns the raw attribute - should only be set
|
||||
|
|
Loading…
Reference in New Issue