From: Travis Carr Date: Thu, 2 Jun 2016 16:25:56 +0000 (-0700) Subject: Removing auth.secure = True since it doesnt seem to exist anymore. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b4d48c4d6b4acf1116b0e67d4a909b1604a02f66;p=tweepy.git Removing auth.secure = True since it doesnt seem to exist anymore. --- diff --git a/examples/oauth.py b/examples/oauth.py index 4035a35..b69ff3a 100644 --- a/examples/oauth.py +++ b/examples/oauth.py @@ -19,7 +19,6 @@ access_token="" access_token_secret="" auth = tweepy.OAuthHandler(consumer_key, consumer_secret) -auth.secure = True auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth)