From 90b2d14cdad2e001b3ccd696fb8007e7b96e82d8 Mon Sep 17 00:00:00 2001 From: Ib Lundgren Date: Wed, 29 May 2013 16:06:30 +0100 Subject: Fix #138. --- oauthlib/oauth1/rfc5849/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.") -- cgit v1.2.1