We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfa3bf3 commit 8e62fb2Copy full SHA for 8e62fb2
memcache.py
@@ -304,7 +304,7 @@ def _decode_value(self, data):
304
if not data:
305
return data
306
307
- if not str(data).startswith(TAGS_PREFIX):
+ if isinstance(data, six.string_types) and (not data.startswith(TAGS_PREFIX)):
308
309
310
try:
setup.py
@@ -4,7 +4,7 @@
4
5
6
setup(name="python-memcached",
7
- version="1.59a",
+ version="1.59a1",
8
description="Pure python memcached client",
9
long_description=open("README.md").read(),
10
author="Evan Martin",
0 commit comments