File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -728,7 +728,7 @@ def connect(self):
728
728
elif self .auth_type == "application" :
729
729
log .info ('creating app auth client via OAuth2' )
730
730
log .debug ('client_id: %s' , self .consumer_key )
731
- log .debug ('client_secret: %s' , self .client_secret )
731
+ log .debug ('client_secret: %s' , self .consumer_secret )
732
732
client = BackendApplicationClient (client_id = self .consumer_key )
733
733
self .client = OAuth2Session (client = client )
734
734
self .client .fetch_token (
@@ -739,7 +739,7 @@ def connect(self):
739
739
else :
740
740
log .info ('creating user auth client' )
741
741
log .debug ('client_id: %s' , self .consumer_key )
742
- log .debug ('client_secret: %s' , self .client_secret )
742
+ log .debug ('client_secret: %s' , self .consumer_secret )
743
743
log .debug ('resource_owner_key: %s' , self .access_token )
744
744
log .debug ('resource_owner_secret: %s' , self .access_token_secret )
745
745
self .client = OAuth1Session (
Original file line number Diff line number Diff line change 1
- version = '2.1.4 '
1
+ version = '2.1.5 '
You can’t perform that action at this time.
0 commit comments