Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit 477f978

Browse files
committed
IDP-43-modular: code copilot feedbaack
1 parent f4b4729 commit 477f978

File tree

1 file changed

+1
-1
lines changed
  • cpk_lib_python_github/github_app_token_generator_package/github_app_token_generator

1 file changed

+1
-1
lines changed

cpk_lib_python_github/github_app_token_generator_package/github_app_token_generator/token_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def generate_org_token(self, config: Config, org_name: str):
8686

8787
installation_id = None
8888
for installation in installations:
89-
if installation.get("account", {}).get("login") == org_name:
89+
if installation.get("account", {}).get("login").lower() == org_name.lower():
9090
installation_id = installation.get("id")
9191
break
9292

0 commit comments

Comments
 (0)