Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flask_oauthlib/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,12 +678,12 @@ def authorized_handler(self, f):
"""Handles an OAuth callback.

.. versionchanged:: 0.7
@authorized_handler is deprecated in favor for authorized_response.
@authorized_handler is deprecated in favor of authorized_response.
"""
@wraps(f)
def decorated(*args, **kwargs):
log.warn(
'@authorized_handler is deprecated in favor for '
'@authorized_handler is deprecated in favor of '
'authorized_response'
)
data = self.authorized_response()
Expand Down