french translation correction

This commit is contained in:
2013-09-26 22:11:25 +02:00
parent f4677b9ef9
commit a004f30e34
2 changed files with 6 additions and 1 deletions

View File

@ -922,6 +922,11 @@ class NetmaskOption(Option):
val_netmask, self._name))
class BroadcastOption(Option):
def _validate(self, value):
IP('{0}/32'.format(value))
class DomainnameOption(Option):
"represents the choice of a domain name"
__slots__ = ('_type', '_allow_ip')