From eb38f9a117f82ebe8fa5ca9b93893f113f357e62 Mon Sep 17 00:00:00 2001 From: Stewie Date: Wed, 10 Aug 2022 16:52:30 -0400 Subject: [PATCH] Updating error message for the try catch --- ToolsTales.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ToolsTales.py b/ToolsTales.py index a7e2a91..9b9afb0 100644 --- a/ToolsTales.py +++ b/ToolsTales.py @@ -687,7 +687,7 @@ class ToolsTales: print("{} was not found in the googlesheet {}".format(sheet_name, googlesheet_id)) except HttpError as e: - print("The Service Account doesn't seem to have acces to that googlesheet.\nMake sure that you added the email of the service account if the googlesheet is private.") + print(e) else: print("{} was not found to authenticate to Googlesheet API".format(creds_path))