Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
0fd129e8
Commit
0fd129e8
authored
Aug 19, 2012
by
Joshua Roesslein
Browse files
Merge pull request #160 from hdemers/fix-memcache-get
Fix `memcache.get` duplicated `key` arg.
parents
ab2be462
7c1f4a1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/cache.py
View file @
0fd129e8
...
...
@@ -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"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment