fix missing auth ref

workspace
Brendan Howell 7 years ago
parent eeb6982cc0
commit 3359906e42

@ -43,8 +43,8 @@ class PublicRelations(Bureau):
oauth_token, oauth_secret = twitter.read_token_file(TW_CREDS)
self.t = TWrapper()
self.t.t = twitter.Twitter(auth=twitter.OAuth(oauth_token, oauth_secret,
CK, CS))
self.auth = twitter.OAuth(oauth_token, oauth_secret, CK, CS)
self.t.t = twitter.Twitter(auth=self.auth)
@add_command("tweetpic", "Post a Document Camera Image to Twitter")
def tweet_pic(self):

Loading…
Cancel
Save