From c3b86af2c908a7cf5fe24b743078264e9014d4db Mon Sep 17 00:00:00 2001 From: Floke Date: Wed, 28 May 2025 08:08:53 +0000 Subject: [PATCH] bugfix --- list_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list_generator.py b/list_generator.py index fbdc8ccb..9b53e8a2 100644 --- a/list_generator.py +++ b/list_generator.py @@ -54,7 +54,7 @@ def get_services_with_service_account(): try: if any(s in SCOPES for s in ['https://www.googleapis.com/auth/drive.file', 'https://www.googleapis.com/auth/drive']): drive_service = build('drive', 'v3', credentials=creds); print("Drive API Service erstellt.") - else: print("WARNUNG: Kein Drive Scope für Drive Service.") + else: print("WARNUNG: Ke in Drive Scope für Drive Service.") except Exception as e: print(f"Fehler Drive Service: {e}") return docs_service, drive_service