Skip to content

Commit

Permalink
Merge pull request #51 from uncovertruth/bug/remove-patch-set_many
Browse files Browse the repository at this point in the history
remove set_many patch
  • Loading branch information
Surgo authored Nov 6, 2018
2 parents 3c00de0 + c5a890c commit 6b17307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_elastipymemcache/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class Client(HashClient):
def get_many(self, keys, gets=False, *args, **kwargs):
# pymemcache's HashClient may returns {'key': False}
end = super(Client, self).get_many(keys, gets, args, kwargs)
end = super(Client, self).get_many(keys, gets, *args, **kwargs)

return {key: end.get(key) for key in end if end.get(key)}

Expand Down

0 comments on commit 6b17307

Please sign in to comment.