Quite little adjustments on tests and return value

# Conflicts:
#	fail2ban/server/ipdns.py
pull/1414/head
Alexander Koeppe 2016-04-09 00:46:17 +02:00 committed by sebres
parent 8cb4a3f59e
commit 4274ae89c6
1 changed files with 2 additions and 2 deletions

View File

@ -303,12 +303,12 @@ class IPAddr(object):
def isIPv4(self): def isIPv4(self):
""" return true if the IP object is of address family AF_INET """ 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): def isIPv6(self):
""" return true if the IP object is of address family AF_INET6 """ 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): def getRaw(self):
""" returns the raw attribute - should only be set """ returns the raw attribute - should only be set