summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2025-10-28 11:25:18 -0500
committerJohn Estabrook <jestabro@vyos.io>2025-10-28 11:25:18 -0500
commitd2a1bde262eded6cf3dda5f76d290e1046078afb (patch)
treeeb8bc138a2601197058760bbe5795dd5e05a276a /src
parent1737b16dd87778358266222e2ef061eb15d63019 (diff)
downloadvyos-1x-d2a1bde262eded6cf3dda5f76d290e1046078afb.tar.gz
vyos-1x-d2a1bde262eded6cf3dda5f76d290e1046078afb.zip
dhcp-server: T3936: fix indent typo
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/service_dhcp-server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/service_dhcp-server.py b/src/conf_mode/service_dhcp-server.py
index 144739372..a1294d77e 100755
--- a/src/conf_mode/service_dhcp-server.py
+++ b/src/conf_mode/service_dhcp-server.py
@@ -306,7 +306,7 @@ def verify(dhcp):
# If a client class has been specified then it must exist
if 'client_class' in range_config:
client_class = range_config['client_class']
- if client_class not in dhcp.get('client_class', {}):
+ if client_class not in dhcp.get('client_class', {}):
raise ConfigError(f'Client class "{client_class}" set in range "{range}" but does not exist')
# Start/Stop address must be inside network