summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergii Mikhtoniuk <smikhtoniuk@demonware.net>2018-11-30 10:18:13 -0800
committerSergii Mikhtoniuk <smikhtoniuk@demonware.net>2018-11-30 10:20:44 -0800
commitc13d7b186ad6d49a8d76dfb2c0d88af947ae80ee (patch)
treeb5ca6173f582cd8be797560c06c1c7c30a883bc7
parentbad41222379102e3f18f6f2f7be3ee608de6fbff (diff)
downloadpython-memcached-c13d7b186ad6d49a8d76dfb2c0d88af947ae80ee.tar.gz
Fix tuple key support in multi methods
Fixes: #154
-rw-r--r--memcache.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/memcache.py b/memcache.py
index 05b6657..e2691fd 100644
--- a/memcache.py
+++ b/memcache.py
@@ -800,8 +800,6 @@ class Client(threading.local):
# server. Returns the mangled key.
server, key = self._get_server(
(serverhash, key_prefix + key))
-
- orig_key = orig_key[1]
else:
key = self._encode_key(orig_key)
if not isinstance(key, six.binary_type):