From 8cd51313ac1ceae80519260e76f604c629b6db00 Mon Sep 17 00:00:00 2001 From: Daniel Dayley Date: Thu, 7 Nov 2024 10:21:58 -0700 Subject: [PATCH] Typos --- bin/headercheckdashboardproxy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/headercheckdashboardproxy b/bin/headercheckdashboardproxy index b71631e..f47893f 100644 --- a/bin/headercheckdashboardproxy +++ b/bin/headercheckdashboardproxy @@ -48,7 +48,7 @@ async def serve_file(request: Request, file_path: str) : raw_markup = html = open(os.path.join(base_path, index_file)) soup = BeautifulSoup(raw_markup, 'html.parser') for service in soup.find_all("li", class_='service') : - shouldremove = false + shouldremove = False if 'users' in service.attrs.keys() : allowed_users = service['users'].split(',') if allowed_users != ["Any"] and user_header not in allowed_users : @@ -56,9 +56,9 @@ async def serve_file(request: Request, file_path: str) : if 'groups' in service.attrs.keys() : allowed_groups = service['groups'].split(',') if list(set(current_groups) & set(allowed_groups)) == [] : - shouldremove = true + shouldremove = True else : - shouldremove = false + shouldremove = False if shouldremove : service.decompose() for category in soup.select('li.category:not(:has(ul li))') :