From f641fc06254b2659f76c0e8aa647af81ca9c6399 Mon Sep 17 00:00:00 2001 From: Soham Banerjee Date: Fri, 9 Jul 2021 10:52:30 +0530 Subject: [PATCH] updated --- certbot-dns-google/certbot_dns_google/_internal/dns_google.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-dns-google/certbot_dns_google/_internal/dns_google.py b/certbot-dns-google/certbot_dns_google/_internal/dns_google.py index b5661d140..57106f1da 100644 --- a/certbot-dns-google/certbot_dns_google/_internal/dns_google.py +++ b/certbot-dns-google/certbot_dns_google/_internal/dns_google.py @@ -82,7 +82,7 @@ class _GoogleClient: scopes = ['https://www.googleapis.com/auth/ndev.clouddns.readwrite'] if account_json is not None: try: - credentials = Credentials.from_service_account_file(account_json, scopes=scopes) + credentials = Credentials.from_service_account_file(account_json, scopes) with open(account_json) as account: self.project_id = json.load(account)['project_id'] except Exception as e: