diff options
Diffstat (limited to 'oauthlib/oauth1/rfc5849/endpoints/resource.py')
-rw-r--r-- | oauthlib/oauth1/rfc5849/endpoints/resource.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/oauthlib/oauth1/rfc5849/endpoints/resource.py b/oauthlib/oauth1/rfc5849/endpoints/resource.py index 7cbfb56..00b5c5f 100644 --- a/oauthlib/oauth1/rfc5849/endpoints/resource.py +++ b/oauthlib/oauth1/rfc5849/endpoints/resource.py @@ -8,11 +8,13 @@ OAuth 1.0 RFC 5849. """ from __future__ import absolute_import, unicode_literals -from oauthlib.common import log +import logging from .base import BaseEndpoint from .. import errors +log = logging.getLogger(__name__) + class ResourceEndpoint(BaseEndpoint): """An endpoint responsible for protecting resources. |