From: Carl Worth Date: Wed, 30 Sep 2020 14:04:56 +0000 (-0700) Subject: Remove another stale file name from a comment X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=4df6ac98138e33b1da4e70d54f8f8469b2800dfb;p=turbot Remove another stale file name from a comment The documentation example used "token.pickle" but we are now using ".gsheets-token.pickle". Here we switch to just "token file" in the code comment so the comment is immune to any renaming. --- diff --git a/turbot/sheets.py b/turbot/sheets.py index 81dfec9..7e6ddea 100644 --- a/turbot/sheets.py +++ b/turbot/sheets.py @@ -20,7 +20,7 @@ def sheets_create(name): """ global creds - # The file token.pickle stores token from last login/refresh + # The token file stores token from last login/refresh if not creds: if os.path.exists(TOKEN_FILE): with open(TOKEN_FILE, 'rb') as token: