Fix unbound variable in call to check_config_path

Change-Id: Ib7e90a5d5b3a2ed108d9ed7672b73974ea13048d
This commit is contained in:
Albin Vass 2024-05-08 18:19:57 +02:00
parent 9fb90a4348
commit a94768c645
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ def no_dup_config_paths(v):
for x in v:
check_config_path(x)
elif isinstance(v, str):
check_config_path(x)
check_config_path(v)
else:
raise vs.Invalid("Expected str or list of str for extra-config-paths")