From: Hugues Demers Date: Mon, 2 Apr 2012 20:42:19 +0000 (-0400) Subject: Fix memcache.set duplicated `key` arg. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7c1f4a1c0557bfa441433c3937b65994f1b5e272;p=tweepy.git Fix memcache.set duplicated `key` arg. --- diff --git a/tweepy/cache.py b/tweepy/cache.py index 6630c49..9a31f58 100644 --- a/tweepy/cache.py +++ b/tweepy/cache.py @@ -289,7 +289,7 @@ class MemCacheCache(Cache): key: which entry to get timeout: override timeout with this value [optional]. DOES NOT WORK HERE """ - return self.client.get(key, key) + return self.client.get(key) def count(self): """Get count of entries currently stored in cache. RETURN 0"""