Eliminado venv y www del repositorio, agrege un requirements igual
This commit is contained in:
@@ -14,7 +14,7 @@ from __future__ import unicode_literals
|
||||
import itertools
|
||||
import struct
|
||||
|
||||
__version__ = '1.0.22'
|
||||
__version__ = '1.0.23'
|
||||
|
||||
# Compatibility functions
|
||||
_compat_int_types = (int,)
|
||||
@@ -1103,7 +1103,8 @@ class _BaseNetwork(_IPAddressBase):
|
||||
try:
|
||||
# Always false if one is v4 and the other is v6.
|
||||
if a._version != b._version:
|
||||
raise TypeError("%s and %s are not of the same version" (a, b))
|
||||
raise TypeError(
|
||||
"%s and %s are not of the same version" % (a, b))
|
||||
return (b.network_address <= a.network_address and
|
||||
b.broadcast_address >= a.broadcast_address)
|
||||
except AttributeError:
|
||||
|
||||
Reference in New Issue
Block a user