From: Ian Kelling Date: Thu, 29 Dec 2022 19:53:57 +0000 (-0500) Subject: fix to usecam fix to use symlined oauth token X-Git-Url: https://vcs.fsf.org/?p=video-tweet.git;a=commitdiff_plain fix to usecam fix to use symlined oauth token --- 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')