Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc924c commit 3855740Copy full SHA for 3855740
zulip/integrations/google/google-calendar
@@ -21,6 +21,7 @@ try:
21
from googleapiclient import discovery
22
except ImportError:
23
logging.exception("Install google-api-python-client")
24
+ sys.exit(1)
25
26
sys.path.append(os.path.join(os.path.dirname(__file__), "../../"))
27
import zulip
@@ -106,8 +107,10 @@ def get_credentials() -> client.Credentials:
106
107
return credentials
108
except client.Error:
109
logging.exception("Error while trying to open the `google-credentials.json` file.")
110
111
except OSError:
112
logging.error("Run the get-google-credentials script from this directory first.")
113
114
115
116
def populate_events() -> Optional[None]:
0 commit comments