From 587588c680bec950b95cd31f9849a01c0a1eed64 Mon Sep 17 00:00:00 2001 From: Ian Kelling Date: Thu, 29 Dec 2022 14:53:57 -0500 Subject: [PATCH] fix to usecam fix to use symlined oauth token --- async-upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async-upload.py b/async-upload.py index 2028355..3d4a8bf 100644 --- a/async-upload.py +++ b/async-upload.py @@ -13,7 +13,7 @@ POST_TWEET_URL = 'https://api.twitter.com/1.1/statuses/update.json' CONSUMER_KEY = 'hJHyPhuU7nSVHrKTVsGVDM4Lw' CONSUMER_SECRET = '8UCYePqc1y9DY6mg0yQzLoTuq57AIysype2Si63714uACGMCbO' -with open(os.path.expanduser('~') + '/.rainbow_oauth-fsf') as fp: +with open(os.path.expanduser('~') + '/.rainbow_oauth') as fp: ACCESS_TOKEN = fp.readline().rstrip('\n') ACCESS_TOKEN_SECRET = fp.readline().rstrip('\n') -- 2.25.1