Quite little adjustments on tests and return value

# Conflicts:
#	fail2ban/server/ipdns.py
This commit is contained in:
Alexander Koeppe 2016-04-09 00:46:17 +02:00 committed by sebres
parent 8cb4a3f59e
commit 4274ae89c6

View file

@ -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