Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: print an error message when ~/.gcalcli_oauth deserialization fails #733

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion gcalcli/gcal.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,16 @@ def _google_auth(self):
oauth_filepath = os.path.expanduser('~/.gcalcli_oauth')
if os.path.exists(oauth_filepath):
with open(oauth_filepath, 'rb') as gcalcli_oauth:
self.credentials = pickle.load(gcalcli_oauth)
try:
self.credentials = pickle.load(gcalcli_oauth)
except pickle.UnpicklingError as e:
self.printer.err_msg(
f"Couldn't parse {oauth_filepath}.\n"
"The file may be corrupt or be incompatible with this "
"version of gcalcli. It probably has to be removed and "
"provisioning done again.\n"
)
raise e

if not self.credentials:
# No cached credentials, start auth flow
Expand Down
Loading