diff --git a/src/rougail/loader.py b/src/rougail/loader.py index 63ae26d1..4b17833a 100644 --- a/src/rougail/loader.py +++ b/src/rougail/loader.py @@ -79,7 +79,9 @@ CONVERT_OPTION = {'number': dict(opttype=IntOption), 'hostname_strict': dict(opttype=DomainnameOption, initkwargs={'type': 'hostname', 'allow_ip': False}), 'web_address': dict(opttype=URLOption, initkwargs={'allow_ip': True, 'allow_without_dot': True}), 'port': dict(opttype=PortOption, initkwargs={'allow_private': True}), - 'mac': dict(opttype=MACOption) + 'mac': dict(opttype=MACOption), + 'cidr': dict(opttype=IPOption, initkwargs={'cidr': True}), + 'network_cidr': dict(opttype=NetworkOption, initkwargs={'cidr': True}), }