master
Marcus Bakker 2020-03-04 10:45:06 +01:00
parent 0b76609c16
commit 10c9b0a629
1 changed files with 2 additions and 2 deletions

View File

@ -117,8 +117,8 @@ def check_health_data_sources(filename, ds_content, health_is_called, no_print=F
# For using the platform variable, we need first-letter-capital values and we don't need the 'empty' value from the check above.
valid_platform_list = []
for p in platform:
if p in PLATFORMS.keys():
valid_platform_list.append(PLATFORMS[p])
if p.lower() in PLATFORMS.keys():
valid_platform_list.append(PLATFORMS[p.lower()])
applicable_data_sources = get_applicable_data_sources_platform(valid_platform_list)
for ds in applicable_data_sources: