summaryrefslogtreecommitdiff
path: root/memcache.py
diff options
context:
space:
mode:
Diffstat (limited to 'memcache.py')
-rw-r--r--memcache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/memcache.py b/memcache.py
index cd300f1..cc7224a 100644
--- a/memcache.py
+++ b/memcache.py
@@ -77,7 +77,7 @@ try:
except ImportError:
from StringIO import StringIO
-valid_key_chars_re = re.compile('[\x21-\x7e\xa0-\xff]+$')
+valid_key_chars_re = re.compile('[\x21-\x7e\x80-\xff]+$')
# Original author: Evan Martin of Danga Interactive