From 5af30aaf97329493da67a427f626348f2e11468f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Dvo=C5=99=C3=A1k?= Date: Tue, 19 Mar 2024 09:08:57 +0100 Subject: [PATCH] Update script.py --- repository_downloader/script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository_downloader/script.py b/repository_downloader/script.py index 37555cb..9e0857b 100644 --- a/repository_downloader/script.py +++ b/repository_downloader/script.py @@ -19,7 +19,7 @@ def get_organization_repositories(): # Fetch repositories in paginated manner # Determine the total number of repositories in the organization - response = requests.get(f"https://api.github.com/orgs/{github_org}") + response = requests.get(f"https://api.github.com/orgs/{ORGANIZATION}") if response.status_code != 200: print(f"Failed to fetch organization info: {response.content}") sys.exit(1)