summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIb Lundgren <ib.lundgren@gmail.com>2013-05-29 16:06:30 +0100
committerIb Lundgren <ib.lundgren@gmail.com>2013-05-29 16:06:30 +0100
commit90b2d14cdad2e001b3ccd696fb8007e7b96e82d8 (patch)
tree426628520087bc9013f19a59fc5de3c7948f5fb9
parent8182baa58649743e0469a8a4f11c204da7e1dbd1 (diff)
downloadoauthlib-90b2d14cdad2e001b3ccd696fb8007e7b96e82d8.tar.gz
Fix #138.
-rw-r--r--oauthlib/oauth1/rfc5849/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/oauth1/rfc5849/__init__.py b/oauthlib/oauth1/rfc5849/__init__.py
index 974777e..a009016 100644
--- a/oauthlib/oauth1/rfc5849/__init__.py
+++ b/oauthlib/oauth1/rfc5849/__init__.py
@@ -720,7 +720,7 @@ class Server(object):
request_token=None, access_token=None):
return ((client_key, timestamp, nonce, request_token or access_token)
- in self.nonces_and_timestamps_database)
+ not in self.nonces_and_timestamps_database)
"""
raise NotImplementedError("Subclasses must implement this function.")